EDM4eic
EIC data model
Loading...
Searching...
No Matches
IrtParticleCollection.h
Go to the documentation of this file.
1// AUTOMATICALLY GENERATED FILE - DO NOT EDIT
2
3#ifndef EDM4EIC_IrtParticleCollection_H
4#define EDM4EIC_IrtParticleCollection_H
5
6// datamodel specific includes
11
12// podio specific includes
13#include "podio/ICollectionProvider.h"
14#include "podio/CollectionBase.h"
15#include "podio/detail/Pythonizations.h"
16#include "podio/utilities/TypeHelpers.h"
17
18#if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
19#include "nlohmann/json_fwd.hpp"
20#endif
21
22#include <string_view>
23#include <vector>
24#include <algorithm>
25#include <ostream>
26#include <mutex>
27#include <memory>
28#include <cstddef>
29
30namespace podio {
31 struct RelationNames;
32}
33
34namespace edm4eic {
35
36
37
39public:
41 using difference_type = ptrdiff_t;
44 using iterator_category = std::input_iterator_tag;
45 // `std::forward_iterator` is supported except that the pointers obtained with `operator->()`
46 // remain valid as long as the iterator is valid, not as long as the range is valid.
47 using iterator_concept = std::random_access_iterator_tag;
48
49 IrtParticleCollectionIterator(size_t index, const IrtParticleObjPointerContainer* collection) : m_index(index), m_object(podio::utils::MaybeSharedPtr<IrtParticleObj>{nullptr}), m_collection(collection) {}
51
57
58 constexpr auto operator<=>(const IrtParticleCollectionIterator& other) const {
59 return m_index <=> other.m_index;
60 }
61
62 constexpr bool operator==(const IrtParticleCollectionIterator& x) const {
63 return m_index == x.m_index;
64 }
65
66 reference operator*() const;
79
80private:
81 size_t m_index{0};
82 IrtParticle m_object { podio::utils::MaybeSharedPtr<IrtParticleObj>{nullptr} };
83 const IrtParticleObjPointerContainer* m_collection{nullptr};
84};
85
86
88public:
90 using difference_type = ptrdiff_t;
93 using iterator_category = std::input_iterator_tag;
94 // `std::forward_iterator` is supported except that the pointers obtained with `operator->()`
95 // remain valid as long as the iterator is valid, not as long as the range is valid.
96 using iterator_concept = std::random_access_iterator_tag;
97
98 IrtParticleMutableCollectionIterator(size_t index, const IrtParticleObjPointerContainer* collection) : m_index(index), m_object(podio::utils::MaybeSharedPtr<IrtParticleObj>{nullptr}), m_collection(collection) {}
100
106
107 constexpr auto operator<=>(const IrtParticleMutableCollectionIterator& other) const {
108 return m_index <=> other.m_index;
109 }
110
111 constexpr bool operator==(const IrtParticleMutableCollectionIterator& x) const {
112 return m_index == x.m_index;
113 }
114
115 reference operator*() const;
128
129private:
130 size_t m_index{0};
131 MutableIrtParticle m_object { podio::utils::MaybeSharedPtr<IrtParticleObj>{nullptr} };
132 const IrtParticleObjPointerContainer* m_collection{nullptr};
133};
134
135
136/**
137A Collection is identified by an ID.
138*/
139class IrtParticleCollection : public podio::CollectionBase {
140public:
145 using difference_type = ptrdiff_t;
146 using size_type = size_t;
147 using const_reverse_iterator = std::reverse_iterator<const_iterator>;
148 using reverse_iterator = std::reverse_iterator<iterator>;
149
151 IrtParticleCollection(IrtParticleCollectionData&& data, bool isSubsetColl);
152 // This is a move-only type
157
158 ~IrtParticleCollection() override;
159#if defined(__cpp_lib_containers_ranges)
160 template<podio::detail::RangeConvertibleTo<value_type> R>
161 IrtParticleCollection(std::from_range_t, R&& range);
162#endif
163
164 /// Construct a IrtParticle collection from a range of mutable or
165 /// immutable handles
166 template<podio::detail::RangeConvertibleTo<value_type> R>
167 static IrtParticleCollection from(R&& range);
168
169 constexpr static std::string_view typeName = "edm4eic::IrtParticleCollection";
170 constexpr static std::string_view valueTypeName = "edm4eic::IrtParticle";
171 constexpr static std::string_view dataTypeName = "edm4eic::IrtParticleData";
172
173 void clear() final;
174
175 /// Cppyy protocol to setup the pythonizations for this class. Not to be called directly.
176 static void __cppyy_pythonize__(PyObject* klass, const std::string& name){
177 podio::detail::pythonizations::pythonize_subscript(klass, name);
178 }
179
180 /// Print this collection to the passed stream
181 void print(std::ostream& os=std::cout, bool flush=true) const final;
182
183 /// Append a new object to the collection, and return this object.
185
186 /// Append a new object to the collection, and return this object.
187 /// Initialized with the parameters given
188 template<typename... Args>
189 MutableIrtParticle create(Args&&... args);
190
191 /// number of elements in the collection
192 std::size_t size() const final;
193
194 /// maximal number of elements in the collection
195 std::size_t max_size() const final;
196
197 /// Is the collection empty
198 bool empty() const final;
199
200 /// fully qualified type name
201 const std::string_view getTypeName() const final { return typeName; }
202 /// fully qualified type name of elements - with namespace
203 const std::string_view getValueTypeName() const final { return valueTypeName; }
204 /// fully qualified type name of stored POD elements - with namespace
205 const std::string_view getDataTypeName() const final { return dataTypeName; }
206 /// schema version
207 podio::SchemaVersionT getSchemaVersion() const final;
208
209 bool isSubsetCollection() const final {
210 return m_isSubsetColl;
211 }
212
213 void setSubsetCollection(bool setSubset=true) final;
214
215 /// Returns the const object of given index
216 IrtParticle operator[](std::size_t index) const;
217 /// Returns the object of a given index
218 MutableIrtParticle operator[](std::size_t index);
219 /// Returns the const object of given index
220 IrtParticle at(std::size_t index) const;
221 /// Returns the object of given index
222 MutableIrtParticle at(std::size_t index);
223
224
225 /// Append object to the collection
226 void push_back(const MutableIrtParticle& object);
227 /// Append an object to the (subset) collection
228 void push_back(const IrtParticle& object);
229
230 void prepareForWrite() const final;
231 void prepareAfterRead() final;
232 bool setReferences(const podio::ICollectionProvider* collectionProvider) final;
233
234 /// Get the collection buffers for this collection
235 podio::CollectionWriteBuffers getBuffers() final;
236
237 void setID(uint32_t ID) final {
238 m_collectionID = ID;
239 if (!m_isSubsetColl) {
240 std::for_each(m_storage.entries.begin(), m_storage.entries.end(),
241 [ID] (IrtParticleObj* obj) { obj->id = {obj->id.index, static_cast<uint32_t>(ID)}; }
242 );
243 }
244 }
245
246 uint32_t getID() const final {
247 return m_collectionID;
248 }
249
250 /// check if the collection has a valid ID
251 bool hasID() const final {
252 return getID() != static_cast<uint32_t>(podio::ObjectID::untracked) &&
253 getID() != static_cast<uint32_t>(podio::ObjectID::invalid);
254 }
255
256 [[deprecated("isValid will be removed, use hasID() if you want to check if it has an ID, otherwise assume the "
257 "collection is valid")]]
258 bool isValid() const final {
259 return hasID();
260 }
261
262 size_t getDatamodelRegistryIndex() const final;
263
264 // support for the iterator protocol
266 return iterator(0, &m_storage.entries);
267 }
269 return const_iterator(0, &m_storage.entries);
270 }
272 return begin();
273 }
275 return iterator(m_storage.entries.size(), &m_storage.entries);
276 }
278 return const_iterator(m_storage.entries.size(), &m_storage.entries);
279 }
281 return end();
282 }
283 // reverse iterators
285 return reverse_iterator(end());
286 }
291 return rbegin();
292 }
294 return reverse_iterator(begin());
295 }
300 return rend();
301 }
302
303
304 std::vector<std::int32_t> PDG(const size_t nElem = 0) const;
305 std::vector<std::uint16_t> npe(const size_t nElem = 0) const;
306 std::vector<std::uint16_t> nhits(const size_t nElem = 0) const;
307
308private:
309 // For setReferences, we need to give our own CollectionData access to our
310 // private entries. Otherwise we would need to expose a public member function
311 // that gives access to the Obj* which is definitely not what we want
313
314 mutable bool m_isPrepared{false};
315 bool m_isSubsetColl{false};
316 uint32_t m_collectionID{static_cast<uint32_t>(podio::ObjectID::untracked)};
317 mutable std::unique_ptr<std::mutex> m_storageMtx{std::make_unique<std::mutex>()};
318 mutable IrtParticleCollectionData m_storage{};
319};
320
321std::ostream& operator<<(std::ostream& o, const IrtParticleCollection& v);
322
323template<typename... Args>
325 if (m_isSubsetColl) {
326 throw std::logic_error("Cannot create new elements on a subset collection");
327 }
328 auto obj = new IrtParticleObj({static_cast<int>(m_storage.entries.size()), m_collectionID}, {std::forward<Args>(args)...});
329 m_storage.entries.push_back(obj);
330
331 // Need to initialize the relation vectors manually for the {ObjectID, IrtParticleData} constructor
332 obj->m_radiators = new std::vector<edm4eic::IrtRadiatorInfo>();
333 m_storage.createRelations(obj);
334 return MutableIrtParticle(podio::utils::MaybeSharedPtr(obj));
335}
336
337
338#if defined(__cpp_lib_containers_ranges)
339template<podio::detail::RangeConvertibleTo<IrtParticleCollection::value_type> R>
340IrtParticleCollection::IrtParticleCollection(std::from_range_t, R&& range)
342 setSubsetCollection(podio::detail::RangeOf<R, value_type>);
343
344 for (auto&& elem : range) {
345 push_back(std::forward<decltype(elem)>(elem));
346 }
347}
348#endif
349
350template<podio::detail::RangeConvertibleTo<IrtParticleCollection::value_type> R>
353 if constexpr (podio::detail::RangeOf<R, value_type>) {
354 coll.setSubsetCollection();
355 }
356
357 for (auto&& elem : range) {
358 coll.push_back(std::forward<decltype(elem)>(elem));
359 }
360
361 return coll;
362}
363
364
365#if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
366void to_json(nlohmann::json& j, const IrtParticleCollection& collection);
367#endif
368
369} // namespace edm4eic
370
371
372// This is needed to avoid triggering opening every library in LD_LIBRARY_PATH
373// until it's fixed in ROOT. See https://github.com/root-project/root/issues/18489
374// and https://github.com/AIDASoft/podio/issues/770
375#if defined(__clang__)
376 #pragma clang diagnostic push
377 #pragma clang diagnostic ignored "-Wunknown-warning-option"
378 #pragma clang diagnostic ignored "-Wdeprecated-redundant-constexpr-static-def"
379 #pragma clang diagnostic ignored "-Wdeprecated"
380constexpr std::string_view edm4eic::IrtParticleCollection::typeName;
381constexpr std::string_view edm4eic::IrtParticleCollection::valueTypeName;
382constexpr std::string_view edm4eic::IrtParticleCollection::dataTypeName;
383 #pragma clang diagnostic pop
384#elif defined(__GNUC__)
385 #pragma GCC diagnostic push
386 #pragma GCC diagnostic ignored "-Wdeprecated"
387constexpr std::string_view edm4eic::IrtParticleCollection::typeName;
388constexpr std::string_view edm4eic::IrtParticleCollection::valueTypeName;
389constexpr std::string_view edm4eic::IrtParticleCollection::dataTypeName;
390 #pragma GCC diagnostic pop
391#endif
392
393
394#endif
Definition IrtParticleCollectionData.h:33
Definition IrtParticleCollection.h:139
void print(std::ostream &os=std::cout, bool flush=true) const final
Print this collection to the passed stream.
Definition IrtParticleCollection.cc:453
const_reverse_iterator rbegin() const
Definition IrtParticleCollection.h:287
reverse_iterator rend()
Definition IrtParticleCollection.h:293
IrtParticleMutableCollectionIterator iterator
Definition IrtParticleCollection.h:144
IrtParticleCollectionIterator const_iterator
Definition IrtParticleCollection.h:143
bool isSubsetCollection() const final
Definition IrtParticleCollection.h:209
IrtParticleCollection(const IrtParticleCollection &)=delete
const_reverse_iterator crbegin() const
Definition IrtParticleCollection.h:290
const_iterator cbegin() const
Definition IrtParticleCollection.h:271
bool setReferences(const podio::ICollectionProvider *collectionProvider) final
Definition IrtParticleCollection.cc:119
const_iterator cend() const
Definition IrtParticleCollection.h:280
const_iterator begin() const
Definition IrtParticleCollection.h:268
bool empty() const final
Is the collection empty.
Definition IrtParticleCollection.cc:63
void setID(uint32_t ID) final
Definition IrtParticleCollection.h:237
MutableIrtParticle create()
Append a new object to the collection, and return this object.
Definition IrtParticleCollection.cc:78
void prepareForWrite() const final
Definition IrtParticleCollection.cc:95
iterator end()
Definition IrtParticleCollection.h:274
~IrtParticleCollection() override
Definition IrtParticleCollection.cc:28
const_reverse_iterator crend() const
Definition IrtParticleCollection.h:299
IrtParticleCollection(IrtParticleCollection &&)=default
static constexpr std::string_view typeName
Definition IrtParticleCollection.h:169
IrtParticle at(std::size_t index) const
Returns the const object of given index.
Definition IrtParticleCollection.cc:37
size_t size_type
Definition IrtParticleCollection.h:146
static IrtParticleCollection from(R &&range)
Definition IrtParticleCollection.h:351
podio::CollectionWriteBuffers getBuffers() final
Get the collection buffers for this collection.
Definition IrtParticleCollection.cc:155
const std::string_view getValueTypeName() const final
fully qualified type name of elements - with namespace
Definition IrtParticleCollection.h:203
const std::string_view getDataTypeName() const final
fully qualified type name of stored POD elements - with namespace
Definition IrtParticleCollection.h:205
void setSubsetCollection(bool setSubset=true) final
Definition IrtParticleCollection.cc:67
iterator begin()
Definition IrtParticleCollection.h:265
const std::string_view getTypeName() const final
fully qualified type name
Definition IrtParticleCollection.h:201
void clear() final
Definition IrtParticleCollection.cc:90
const_reverse_iterator rend() const
Definition IrtParticleCollection.h:296
const_iterator end() const
Definition IrtParticleCollection.h:277
std::size_t size() const final
number of elements in the collection
Definition IrtParticleCollection.cc:49
void prepareAfterRead() final
Definition IrtParticleCollection.cc:104
bool hasID() const final
check if the collection has a valid ID
Definition IrtParticleCollection.h:251
MutableIrtParticle mutable_type
Definition IrtParticleCollection.h:142
std::reverse_iterator< const_iterator > const_reverse_iterator
Definition IrtParticleCollection.h:147
ptrdiff_t difference_type
Definition IrtParticleCollection.h:145
bool isValid() const final
Definition IrtParticleCollection.h:258
IrtParticle value_type
Definition IrtParticleCollection.h:141
static constexpr std::string_view dataTypeName
Definition IrtParticleCollection.h:171
reverse_iterator rbegin()
Definition IrtParticleCollection.h:284
std::reverse_iterator< iterator > reverse_iterator
Definition IrtParticleCollection.h:148
uint32_t getID() const final
Definition IrtParticleCollection.h:246
void push_back(const MutableIrtParticle &object)
Append object to the collection.
Definition IrtParticleCollection.cc:123
static void __cppyy_pythonize__(PyObject *klass, const std::string &name)
Cppyy protocol to setup the pythonizations for this class. Not to be called directly.
Definition IrtParticleCollection.h:176
std::size_t max_size() const final
maximal number of elements in the collection
Definition IrtParticleCollection.cc:53
friend class IrtParticleCollectionData
Definition IrtParticleCollection.h:312
IrtParticleCollection & operator=(IrtParticleCollection &&)=default
podio::SchemaVersionT getSchemaVersion() const final
schema version
Definition IrtParticleCollection.cc:194
static constexpr std::string_view valueTypeName
Definition IrtParticleCollection.h:170
IrtParticleCollection & operator=(const IrtParticleCollection &)=delete
Definition IrtParticleCollection.h:38
IrtParticleCollectionIterator & operator=(IrtParticleCollectionIterator &&)=default
IrtParticleCollectionIterator operator-(difference_type n) const
Definition IrtParticleCollection.cc:343
IrtParticle value_type
Definition IrtParticleCollection.h:40
IrtParticleCollectionIterator & operator-=(difference_type n)
Definition IrtParticleCollection.cc:338
IrtParticleCollectionIterator(size_t index, const IrtParticleObjPointerContainer *collection)
Definition IrtParticleCollection.h:49
std::random_access_iterator_tag iterator_concept
Definition IrtParticleCollection.h:47
pointer operator->()
Definition IrtParticleCollection.cc:296
reference operator*() const
Definition IrtParticleCollection.cc:292
IrtParticleCollectionIterator(IrtParticleCollectionIterator &&)=default
IrtParticleCollectionIterator operator+(difference_type n) const
Definition IrtParticleCollection.cc:328
IrtParticle * pointer
Definition IrtParticleCollection.h:43
constexpr bool operator==(const IrtParticleCollectionIterator &x) const
Definition IrtParticleCollection.h:62
IrtParticleCollectionIterator(const IrtParticleCollectionIterator &)=default
constexpr auto operator<=>(const IrtParticleCollectionIterator &other) const
Definition IrtParticleCollection.h:58
IrtParticleCollectionIterator & operator++()
Definition IrtParticleCollection.cc:301
IrtParticleCollectionIterator & operator=(const IrtParticleCollectionIterator &)=default
reference operator[](difference_type n) const
Definition IrtParticleCollection.cc:349
IrtParticleCollectionIterator & operator--()
Definition IrtParticleCollection.cc:312
IrtParticle reference
Definition IrtParticleCollection.h:42
IrtParticleCollectionIterator & operator+=(difference_type n)
Definition IrtParticleCollection.cc:323
std::input_iterator_tag iterator_category
Definition IrtParticleCollection.h:44
ptrdiff_t difference_type
Definition IrtParticleCollection.h:41
Definition IrtParticle.h:46
Definition IrtParticleCollection.h:87
reference operator*() const
Definition IrtParticleCollection.cc:359
IrtParticleMutableCollectionIterator operator+(difference_type n) const
Definition IrtParticleCollection.cc:395
IrtParticleMutableCollectionIterator(size_t index, const IrtParticleObjPointerContainer *collection)
Definition IrtParticleCollection.h:98
MutableIrtParticle * pointer
Definition IrtParticleCollection.h:92
constexpr auto operator<=>(const IrtParticleMutableCollectionIterator &other) const
Definition IrtParticleCollection.h:107
IrtParticleMutableCollectionIterator & operator=(const IrtParticleMutableCollectionIterator &)=default
ptrdiff_t difference_type
Definition IrtParticleCollection.h:90
IrtParticleMutableCollectionIterator & operator+=(difference_type n)
Definition IrtParticleCollection.cc:390
IrtParticleMutableCollectionIterator & operator=(IrtParticleMutableCollectionIterator &&)=default
IrtParticleMutableCollectionIterator(const IrtParticleMutableCollectionIterator &)=default
IrtParticleMutableCollectionIterator(IrtParticleMutableCollectionIterator &&)=default
MutableIrtParticle reference
Definition IrtParticleCollection.h:91
std::random_access_iterator_tag iterator_concept
Definition IrtParticleCollection.h:96
IrtParticleMutableCollectionIterator & operator-=(difference_type n)
Definition IrtParticleCollection.cc:405
IrtParticleMutableCollectionIterator operator-(difference_type n) const
Definition IrtParticleCollection.cc:410
IrtParticleMutableCollectionIterator & operator++()
Definition IrtParticleCollection.cc:368
pointer operator->()
Definition IrtParticleCollection.cc:363
reference operator[](difference_type n) const
Definition IrtParticleCollection.cc:416
constexpr bool operator==(const IrtParticleMutableCollectionIterator &x) const
Definition IrtParticleCollection.h:111
std::input_iterator_tag iterator_category
Definition IrtParticleCollection.h:93
IrtParticleMutableCollectionIterator & operator--()
Definition IrtParticleCollection.cc:379
IrtParticle value_type
Definition IrtParticleCollection.h:89
Definition IrtParticleObj.h:24
std::vector< edm4eic::IrtRadiatorInfo > * m_radiators
Definition IrtParticleObj.h:41
Definition MutableIrtParticle.h:38
Definition ArrowMapper.cc:61
std::deque< IrtParticleObj * > IrtParticleObjPointerContainer
Definition IrtParticleCollectionData.h:25
std::ostream & operator<<(std::ostream &o, const CalorimeterHit &value)
Definition CalorimeterHit.cc:99
Definition CalorimeterHit.h:31