EICd
EIC data model
All Classes Namespaces Files Functions Variables Typedefs Friends
EventInfoCollection.h
Go to the documentation of this file.
1 // AUTOMATICALLY GENERATED FILE - DO NOT EDIT
2 
3 #ifndef EICD_EventInfoCollection_H
4 #define EICD_EventInfoCollection_H
5 
6 // datamodel specific includes
7 #include "eicd/EventInfoData.h"
8 #include "eicd/EventInfo.h"
9 #include "eicd/EventInfoObj.h"
10 
11 // podio specific includes
12 #include "podio/ICollectionProvider.h"
13 #include "podio/CollectionBase.h"
14 #include "podio/CollectionIDTable.h"
15 
16 #include <string>
17 #include <vector>
18 #include <deque>
19 #include <array>
20 #include <algorithm>
21 #include <ostream>
22 
23 namespace eic {
24 
25 
26 using EventInfoDataContainer = std::vector<EventInfoData>;
27 using EventInfoObjPointerContainer = std::deque<EventInfoObj*>;
28 
30 public:
31  EventInfoCollectionIterator(size_t index, const EventInfoObjPointerContainer* collection) : m_index(index), m_object(nullptr), m_collection(collection) {}
32 
35 
36  bool operator!=(const EventInfoCollectionIterator& x) const {
37  return m_index != x.m_index; // TODO: may not be complete
38  }
39 
43 
44 private:
45  size_t m_index;
46  EventInfo m_object;
47  const EventInfoObjPointerContainer* m_collection;
48 };
49 
50 
52 public:
53  EventInfoConstCollectionIterator(size_t index, const EventInfoObjPointerContainer* collection) : m_index(index), m_object(nullptr), m_collection(collection) {}
54 
57 
59  return m_index != x.m_index; // TODO: may not be complete
60  }
61 
65 
66 private:
67  size_t m_index;
68  ConstEventInfo m_object;
69  const EventInfoObjPointerContainer* m_collection;
70 };
71 
72 
73 /**
74 A Collection is identified by an ID.
75 */
76 class EventInfoCollection : public podio::CollectionBase {
77 
78 public:
81 
85 // EventInfoCollection(EventInfoVector* data, int collectionID);
87 
88  void clear() override final;
89 
90  /// operator to allow pointer like calling of members a la LCIO
91  EventInfoCollection* operator->() { return (EventInfoCollection*) this; }
92 
93  /// Append a new object to the collection, and return this object.
94  EventInfo create();
95 
96  /// Append a new object to the collection, and return this object.
97  /// Initialized with the parameters given
98  template<typename... Args>
99  EventInfo create(Args&&... args);
100 
101  /// number of elements in the collection
102  size_t size() const override final;
103 
104  /// fully qualified type name of elements - with namespace
105  std::string getValueTypeName() const override { return std::string("eic::EventInfo"); }
106 
107  /// Returns the const object of given index
108  ConstEventInfo operator[](unsigned int index) const;
109  /// Returns the object of a given index
110  EventInfo operator[](unsigned int index);
111  /// Returns the const object of given index
112  ConstEventInfo at(unsigned int index) const;
113  /// Returns the object of given index
114  EventInfo at(unsigned int index);
115 
116 
117  /// Append object to the collection
118  void push_back(ConstEventInfo object);
119 
120  void prepareForWrite() override final;
121  void prepareAfterRead() override final;
122  void setBuffer(void* address) override final;
123  bool setReferences(const podio::ICollectionProvider* collectionProvider) override final;
124 
125  podio::CollRefCollection* referenceCollections() override final { return &m_refCollections; }
126 
127  podio::VectorMembersInfo* vectorMembers() override { return &m_vecmem_info; }
128 
129  void setID(unsigned ID) override final {
130  m_collectionID = ID;
131  std::for_each(m_entries.begin(),m_entries.end(),
132  [ID] (EventInfoObj* obj) { obj->id = {obj->id.index, static_cast<int>(ID)}; }
133  );
134  m_isValid = true;
135  };
136 
137  unsigned getID() const override final {
138  return m_collectionID;
139  }
140 
141  bool isValid() const override final {
142  return m_isValid;
143  }
144 
145  // support for the iterator protocol
147  return iterator(0, &m_entries);
148  }
150  return const_iterator(0, &m_entries);
151  }
153  return iterator(m_entries.size(), &m_entries);
154  }
155  const_iterator end() const {
156  return const_iterator(m_entries.size(), &m_entries);
157  }
158 
159  /// returns the address of the pointer to the data buffer
160  void* getBufferAddress() override final { return (void*)&m_data; }
161 
162  /// Returns the pointer to the data buffer
163  std::vector<EventInfoData>* _getBuffer() { return m_data; }
164 
165  template<size_t arraysize>
166  const std::array<std::uint64_t, arraysize> run() const;
167  template<size_t arraysize>
168  const std::array<std::uint64_t, arraysize> number() const;
169  template<size_t arraysize>
170  const std::array<std::int32_t, arraysize> type() const;
171  template<size_t arraysize>
172  const std::array<std::int32_t, arraysize> proc() const;
173  template<size_t arraysize>
174  const std::array<std::int32_t, arraysize> source() const;
175  template<size_t arraysize>
176  const std::array<eic::Weight, arraysize> weight() const;
177 
178 private:
179  bool m_isValid{false};
180  bool m_isReadFromFile{false};
181  int m_collectionID{0};
183 
184  // members to handle 1-to-N-relations
185 
186  // members to handle vector members
187  // members to handle streaming
188  podio::CollRefCollection m_refCollections{};
189  podio::VectorMembersInfo m_vecmem_info{};
190  EventInfoDataContainer* m_data;
191 };
192 
193 std::ostream& operator<<(std::ostream& o, const EventInfoCollection& v);
194 
195 template<typename... Args>
196 EventInfo EventInfoCollection::create(Args&&... args) {
197  const int size = m_entries.size();
198  auto obj = new EventInfoObj({size, m_collectionID}, {args...});
199  m_entries.push_back(obj);
200  return EventInfo(obj);
201 }
202 
203 template<size_t arraysize>
204 const std::array<std::uint64_t, arraysize> EventInfoCollection::run() const {
205  std::array<std::uint64_t, arraysize> tmp;
206  const auto valid_size = std::min(arraysize, m_entries.size());
207  for (unsigned i = 0; i < valid_size; ++i) {
208  tmp[i] = m_entries[i]->data.run;
209  }
210  return tmp;
211 }
212 
213 template<size_t arraysize>
214 const std::array<std::uint64_t, arraysize> EventInfoCollection::number() const {
215  std::array<std::uint64_t, arraysize> tmp;
216  const auto valid_size = std::min(arraysize, m_entries.size());
217  for (unsigned i = 0; i < valid_size; ++i) {
218  tmp[i] = m_entries[i]->data.number;
219  }
220  return tmp;
221 }
222 
223 template<size_t arraysize>
224 const std::array<std::int32_t, arraysize> EventInfoCollection::type() const {
225  std::array<std::int32_t, arraysize> tmp;
226  const auto valid_size = std::min(arraysize, m_entries.size());
227  for (unsigned i = 0; i < valid_size; ++i) {
228  tmp[i] = m_entries[i]->data.type;
229  }
230  return tmp;
231 }
232 
233 template<size_t arraysize>
234 const std::array<std::int32_t, arraysize> EventInfoCollection::proc() const {
235  std::array<std::int32_t, arraysize> tmp;
236  const auto valid_size = std::min(arraysize, m_entries.size());
237  for (unsigned i = 0; i < valid_size; ++i) {
238  tmp[i] = m_entries[i]->data.proc;
239  }
240  return tmp;
241 }
242 
243 template<size_t arraysize>
244 const std::array<std::int32_t, arraysize> EventInfoCollection::source() const {
245  std::array<std::int32_t, arraysize> tmp;
246  const auto valid_size = std::min(arraysize, m_entries.size());
247  for (unsigned i = 0; i < valid_size; ++i) {
248  tmp[i] = m_entries[i]->data.source;
249  }
250  return tmp;
251 }
252 
253 template<size_t arraysize>
254 const std::array<eic::Weight, arraysize> EventInfoCollection::weight() const {
255  std::array<eic::Weight, arraysize> tmp;
256  const auto valid_size = std::min(arraysize, m_entries.size());
257  for (unsigned i = 0; i < valid_size; ++i) {
258  tmp[i] = m_entries[i]->data.weight;
259  }
260  return tmp;
261 }
262 
263 
264 } // namespace eic
265 
266 
267 #endif
eic::EventInfoObjPointerContainer
std::deque< EventInfoObj * > EventInfoObjPointerContainer
Definition: EventInfoCollection.h:27
eic::operator<<
std::ostream & operator<<(std::ostream &o, const ConstBasicParticle &value)
Definition: BasicParticle.cc:102
eic::EventInfoCollection::at
ConstEventInfo at(unsigned int index) const
Returns the const object of given index.
Definition: EventInfoCollection.cc:27
EventInfoObj.h
eic::EventInfoConstCollectionIterator::operator=
EventInfoConstCollectionIterator & operator=(const EventInfoConstCollectionIterator &)=delete
eic::EventInfoCollection::begin
iterator begin()
Definition: EventInfoCollection.h:146
eic::EventInfoCollection::end
const_iterator end() const
Definition: EventInfoCollection.h:155
eic::EventInfoCollection::isValid
bool isValid() const override final
Definition: EventInfoCollection.h:141
eic::EventInfoCollectionIterator::EventInfoCollectionIterator
EventInfoCollectionIterator(const EventInfoCollectionIterator &)=delete
eic::EventInfoCollection::push_back
void push_back(ConstEventInfo object)
Append object to the collection.
Definition: EventInfoCollection.cc:89
eic::EventInfoCollection::size
size_t size() const override final
number of elements in the collection
Definition: EventInfoCollection.cc:39
eic::EventInfoCollection::operator[]
ConstEventInfo operator[](unsigned int index) const
Returns the const object of given index.
Definition: EventInfoCollection.cc:23
eic
Definition: BasicParticle.cc:13
eic::EventInfo
Definition: EventInfo.h:22
eic::EventInfoCollection::create
EventInfo create()
Append a new object to the collection, and return this object.
Definition: EventInfoCollection.cc:43
eic::EventInfoCollection::prepareAfterRead
void prepareAfterRead() override final
Definition: EventInfoCollection.cc:69
eic::EventInfoCollection::operator=
EventInfoCollection & operator=(const EventInfoCollection &)=delete
eic::EventInfoConstCollectionIterator::operator!=
bool operator!=(const EventInfoConstCollectionIterator &x) const
Definition: EventInfoCollection.h:58
eic::ConstEventInfo
Definition: EventInfoConst.h:20
eic::EventInfoCollectionIterator::operator->
EventInfo * operator->()
Definition: EventInfoCollection.cc:111
eic::EventInfoCollection::vectorMembers
podio::VectorMembersInfo * vectorMembers() override
Definition: EventInfoCollection.h:127
eic::EventInfoCollection::getValueTypeName
std::string getValueTypeName() const override
fully qualified type name of elements - with namespace
Definition: EventInfoCollection.h:105
eic::EventInfoCollection::EventInfoCollection
EventInfoCollection(const EventInfoCollection &)=delete
EventInfo.h
eic::EventInfoConstCollectionIterator::operator->
ConstEventInfo * operator->()
Definition: EventInfoCollection.cc:128
eic::EventInfoConstCollectionIterator::operator++
EventInfoConstCollectionIterator & operator++()
Definition: EventInfoCollection.cc:133
eic::EventInfoCollectionIterator::operator*
EventInfo operator*()
Definition: EventInfoCollection.cc:106
eic::EventInfoCollection::~EventInfoCollection
~EventInfoCollection()
Definition: EventInfoCollection.cc:18
eic::EventInfoCollection::setBuffer
void setBuffer(void *address) override final
Definition: EventInfoCollection.cc:101
eic::EventInfoCollectionIterator::operator=
EventInfoCollectionIterator & operator=(const EventInfoCollectionIterator &)=delete
eic::EventInfoCollection::getBufferAddress
void * getBufferAddress() override final
returns the address of the pointer to the data buffer
Definition: EventInfoCollection.h:160
eic::EventInfoCollection::getID
unsigned getID() const override final
Definition: EventInfoCollection.h:137
eic::EventInfoCollection::prepareForWrite
void prepareForWrite() override final
Definition: EventInfoCollection.cc:56
eic::EventInfoCollection::_getBuffer
std::vector< EventInfoData > * _getBuffer()
Returns the pointer to the data buffer.
Definition: EventInfoCollection.h:163
eic::EventInfoObj
Definition: EventInfoObj.h:18
eic::EventInfoCollectionIterator::EventInfoCollectionIterator
EventInfoCollectionIterator(size_t index, const EventInfoObjPointerContainer *collection)
Definition: EventInfoCollection.h:31
eic::EventInfoCollection::EventInfoCollection
EventInfoCollection()
Definition: EventInfoCollection.cc:13
eic::EventInfoConstCollectionIterator::EventInfoConstCollectionIterator
EventInfoConstCollectionIterator(size_t index, const EventInfoObjPointerContainer *collection)
Definition: EventInfoCollection.h:53
eic::EventInfoConstCollectionIterator::operator*
ConstEventInfo operator*()
Definition: EventInfoCollection.cc:123
eic::EventInfoCollection::referenceCollections
podio::CollRefCollection * referenceCollections() override final
Definition: EventInfoCollection.h:125
eic::EventInfoCollection::end
iterator end()
Definition: EventInfoCollection.h:152
eic::EventInfoCollection::setID
void setID(unsigned ID) override final
Definition: EventInfoCollection.h:129
eic::EventInfoCollection::clear
void clear() override final
Definition: EventInfoCollection.cc:50
eic::EventInfoCollectionIterator
Definition: EventInfoCollection.h:29
eic::EventInfoConstCollectionIterator
Definition: EventInfoCollection.h:51
EventInfoData.h
eic::EventInfoCollection::begin
const_iterator begin() const
Definition: EventInfoCollection.h:149
eic::EventInfoCollection::setReferences
bool setReferences(const podio::ICollectionProvider *collectionProvider) override final
Definition: EventInfoCollection.cc:84
eic::EventInfoDataContainer
std::vector< EventInfoData > EventInfoDataContainer
Definition: EventInfoCollection.h:26
eic::EventInfoCollection
Definition: EventInfoCollection.h:76
eic::EventInfoCollectionIterator::operator++
EventInfoCollectionIterator & operator++()
Definition: EventInfoCollection.cc:116
eic::EventInfoConstCollectionIterator::EventInfoConstCollectionIterator
EventInfoConstCollectionIterator(const EventInfoConstCollectionIterator &)=delete
eic::EventInfoCollectionIterator::operator!=
bool operator!=(const EventInfoCollectionIterator &x) const
Definition: EventInfoCollection.h:36