Go to the documentation of this file.
3 #ifndef EICD_EventInfoCollection_H
4 #define EICD_EventInfoCollection_H
12 #include "podio/ICollectionProvider.h"
13 #include "podio/CollectionBase.h"
14 #include "podio/CollectionIDTable.h"
37 return m_index != x.m_index;
59 return m_index != x.m_index;
88 void clear() override final;
98 template<
typename... Args>
102 size_t size() const override final;
122 void setBuffer(
void* address) override final;
123 bool setReferences(const podio::ICollectionProvider* collectionProvider) override final;
127 podio::VectorMembersInfo*
vectorMembers()
override {
return &m_vecmem_info; }
129 void setID(
unsigned ID)
override final {
131 std::for_each(m_entries.begin(),m_entries.end(),
132 [ID] (
EventInfoObj* obj) { obj->id = {obj->id.index, static_cast<int>(ID)}; }
137 unsigned getID() const override final {
138 return m_collectionID;
153 return iterator(m_entries.size(), &m_entries);
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;
179 bool m_isValid{
false};
180 bool m_isReadFromFile{
false};
181 int m_collectionID{0};
188 podio::CollRefCollection m_refCollections{};
189 podio::VectorMembersInfo m_vecmem_info{};
193 std::ostream&
operator<<(std::ostream& o,
const EventInfoCollection& v);
195 template<
typename... Args>
197 const int size = m_entries.size();
198 auto obj =
new EventInfoObj({size, m_collectionID}, {args...});
199 m_entries.push_back(obj);
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;
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;
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;
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;
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;
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;
std::deque< EventInfoObj * > EventInfoObjPointerContainer
Definition: EventInfoCollection.h:27
std::ostream & operator<<(std::ostream &o, const ConstBasicParticle &value)
Definition: BasicParticle.cc:102
ConstEventInfo at(unsigned int index) const
Returns the const object of given index.
Definition: EventInfoCollection.cc:27
EventInfoConstCollectionIterator & operator=(const EventInfoConstCollectionIterator &)=delete
iterator begin()
Definition: EventInfoCollection.h:146
const_iterator end() const
Definition: EventInfoCollection.h:155
bool isValid() const override final
Definition: EventInfoCollection.h:141
EventInfoCollectionIterator(const EventInfoCollectionIterator &)=delete
void push_back(ConstEventInfo object)
Append object to the collection.
Definition: EventInfoCollection.cc:89
size_t size() const override final
number of elements in the collection
Definition: EventInfoCollection.cc:39
ConstEventInfo operator[](unsigned int index) const
Returns the const object of given index.
Definition: EventInfoCollection.cc:23
Definition: BasicParticle.cc:13
Definition: EventInfo.h:22
EventInfo create()
Append a new object to the collection, and return this object.
Definition: EventInfoCollection.cc:43
void prepareAfterRead() override final
Definition: EventInfoCollection.cc:69
EventInfoCollection & operator=(const EventInfoCollection &)=delete
bool operator!=(const EventInfoConstCollectionIterator &x) const
Definition: EventInfoCollection.h:58
Definition: EventInfoConst.h:20
EventInfo * operator->()
Definition: EventInfoCollection.cc:111
podio::VectorMembersInfo * vectorMembers() override
Definition: EventInfoCollection.h:127
std::string getValueTypeName() const override
fully qualified type name of elements - with namespace
Definition: EventInfoCollection.h:105
EventInfoCollection(const EventInfoCollection &)=delete
ConstEventInfo * operator->()
Definition: EventInfoCollection.cc:128
EventInfoConstCollectionIterator & operator++()
Definition: EventInfoCollection.cc:133
EventInfo operator*()
Definition: EventInfoCollection.cc:106
~EventInfoCollection()
Definition: EventInfoCollection.cc:18
void setBuffer(void *address) override final
Definition: EventInfoCollection.cc:101
EventInfoCollectionIterator & operator=(const EventInfoCollectionIterator &)=delete
void * getBufferAddress() override final
returns the address of the pointer to the data buffer
Definition: EventInfoCollection.h:160
unsigned getID() const override final
Definition: EventInfoCollection.h:137
void prepareForWrite() override final
Definition: EventInfoCollection.cc:56
std::vector< EventInfoData > * _getBuffer()
Returns the pointer to the data buffer.
Definition: EventInfoCollection.h:163
Definition: EventInfoObj.h:18
EventInfoCollectionIterator(size_t index, const EventInfoObjPointerContainer *collection)
Definition: EventInfoCollection.h:31
EventInfoCollection()
Definition: EventInfoCollection.cc:13
EventInfoConstCollectionIterator(size_t index, const EventInfoObjPointerContainer *collection)
Definition: EventInfoCollection.h:53
ConstEventInfo operator*()
Definition: EventInfoCollection.cc:123
podio::CollRefCollection * referenceCollections() override final
Definition: EventInfoCollection.h:125
iterator end()
Definition: EventInfoCollection.h:152
void setID(unsigned ID) override final
Definition: EventInfoCollection.h:129
void clear() override final
Definition: EventInfoCollection.cc:50
Definition: EventInfoCollection.h:29
Definition: EventInfoCollection.h:51
const_iterator begin() const
Definition: EventInfoCollection.h:149
bool setReferences(const podio::ICollectionProvider *collectionProvider) override final
Definition: EventInfoCollection.cc:84
std::vector< EventInfoData > EventInfoDataContainer
Definition: EventInfoCollection.h:26
Definition: EventInfoCollection.h:76
EventInfoCollectionIterator & operator++()
Definition: EventInfoCollection.cc:116
EventInfoConstCollectionIterator(const EventInfoConstCollectionIterator &)=delete
bool operator!=(const EventInfoCollectionIterator &x) const
Definition: EventInfoCollection.h:36