Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-15 10:12:03

0001 // AUTOMATICALLY GENERATED FILE - DO NOT EDIT
0002 
0003 #ifndef EDM4EIC_MCRecoCalorimeterHitAssociationCollection_H
0004 #define EDM4EIC_MCRecoCalorimeterHitAssociationCollection_H
0005 
0006 // datamodel specific includes
0007 #include "edm4eic/MCRecoCalorimeterHitAssociation.h"
0008 #include "edm4eic/MutableMCRecoCalorimeterHitAssociation.h"
0009 #include "edm4eic/MCRecoCalorimeterHitAssociationObj.h"
0010 #include "edm4eic/MCRecoCalorimeterHitAssociationCollectionData.h"
0011 
0012 // podio specific includes
0013 #include "podio/ICollectionProvider.h"
0014 #include "podio/CollectionBase.h"
0015 #include "podio/detail/Pythonizations.h"
0016 
0017 #if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
0018 #include "nlohmann/json_fwd.hpp"
0019 #endif
0020 
0021 #include <string_view>
0022 #include <vector>
0023 #include <algorithm>
0024 #include <ostream>
0025 #include <mutex>
0026 #include <memory>
0027 #include <cstddef>
0028 
0029 namespace podio {
0030   struct RelationNames;
0031 }
0032 
0033 namespace edm4eic {
0034 
0035 
0036 
0037 class MCRecoCalorimeterHitAssociationCollectionIterator {
0038 public:
0039   using value_type = MCRecoCalorimeterHitAssociation;
0040   using difference_type = ptrdiff_t;
0041   using reference = MCRecoCalorimeterHitAssociation;
0042   using pointer = MCRecoCalorimeterHitAssociation*;
0043   using iterator_category = std::input_iterator_tag;
0044   // `std::forward_iterator` is supported except that the pointers obtained with `operator->()`
0045   // remain valid as long as the iterator is valid, not as long as the range is valid.
0046   using iterator_concept = std::random_access_iterator_tag;
0047 
0048   MCRecoCalorimeterHitAssociationCollectionIterator(size_t index, const MCRecoCalorimeterHitAssociationObjPointerContainer* collection) : m_index(index), m_object(podio::utils::MaybeSharedPtr<MCRecoCalorimeterHitAssociationObj>{nullptr}), m_collection(collection) {}
0049   MCRecoCalorimeterHitAssociationCollectionIterator() = default;
0050 
0051   MCRecoCalorimeterHitAssociationCollectionIterator(const MCRecoCalorimeterHitAssociationCollectionIterator&) = default;
0052   MCRecoCalorimeterHitAssociationCollectionIterator(MCRecoCalorimeterHitAssociationCollectionIterator&&) = default;
0053   MCRecoCalorimeterHitAssociationCollectionIterator& operator=(const MCRecoCalorimeterHitAssociationCollectionIterator&) = default;
0054   MCRecoCalorimeterHitAssociationCollectionIterator& operator=(MCRecoCalorimeterHitAssociationCollectionIterator&&) = default;
0055   ~MCRecoCalorimeterHitAssociationCollectionIterator() = default;
0056 
0057   auto operator<=>(const MCRecoCalorimeterHitAssociationCollectionIterator& other) const {
0058     return m_index <=> other.m_index;
0059   }
0060 
0061   bool operator==(const MCRecoCalorimeterHitAssociationCollectionIterator& x) const {
0062     return m_index ==  x.m_index;
0063   }
0064 
0065   reference operator*() const;
0066   pointer operator->();
0067   MCRecoCalorimeterHitAssociationCollectionIterator& operator++();
0068   MCRecoCalorimeterHitAssociationCollectionIterator operator++(int);
0069   MCRecoCalorimeterHitAssociationCollectionIterator& operator--();
0070   MCRecoCalorimeterHitAssociationCollectionIterator operator--(int);
0071   MCRecoCalorimeterHitAssociationCollectionIterator& operator+=(difference_type n);
0072   MCRecoCalorimeterHitAssociationCollectionIterator operator+(difference_type n) const;
0073   friend MCRecoCalorimeterHitAssociationCollectionIterator operator+(difference_type n, const MCRecoCalorimeterHitAssociationCollectionIterator& it);
0074   MCRecoCalorimeterHitAssociationCollectionIterator& operator-=(difference_type n);
0075   MCRecoCalorimeterHitAssociationCollectionIterator operator-(difference_type n) const;
0076   reference operator[](difference_type n) const;
0077   difference_type operator-(const MCRecoCalorimeterHitAssociationCollectionIterator& other) const;
0078 
0079 private:
0080   size_t m_index{0};
0081   MCRecoCalorimeterHitAssociation m_object { podio::utils::MaybeSharedPtr<MCRecoCalorimeterHitAssociationObj>{nullptr} };
0082   const MCRecoCalorimeterHitAssociationObjPointerContainer* m_collection{nullptr};
0083 };
0084 
0085 
0086 class MCRecoCalorimeterHitAssociationMutableCollectionIterator {
0087 public:
0088   using value_type = MCRecoCalorimeterHitAssociation;
0089   using difference_type = ptrdiff_t;
0090   using reference = MutableMCRecoCalorimeterHitAssociation;
0091   using pointer = MutableMCRecoCalorimeterHitAssociation*;
0092   using iterator_category = std::input_iterator_tag;
0093   // `std::forward_iterator` is supported except that the pointers obtained with `operator->()`
0094   // remain valid as long as the iterator is valid, not as long as the range is valid.
0095   using iterator_concept = std::random_access_iterator_tag;
0096 
0097   MCRecoCalorimeterHitAssociationMutableCollectionIterator(size_t index, const MCRecoCalorimeterHitAssociationObjPointerContainer* collection) : m_index(index), m_object(podio::utils::MaybeSharedPtr<MCRecoCalorimeterHitAssociationObj>{nullptr}), m_collection(collection) {}
0098   MCRecoCalorimeterHitAssociationMutableCollectionIterator() = default;
0099 
0100   MCRecoCalorimeterHitAssociationMutableCollectionIterator(const MCRecoCalorimeterHitAssociationMutableCollectionIterator&) = default;
0101   MCRecoCalorimeterHitAssociationMutableCollectionIterator(MCRecoCalorimeterHitAssociationMutableCollectionIterator&&) = default;
0102   MCRecoCalorimeterHitAssociationMutableCollectionIterator& operator=(const MCRecoCalorimeterHitAssociationMutableCollectionIterator&) = default;
0103   MCRecoCalorimeterHitAssociationMutableCollectionIterator& operator=(MCRecoCalorimeterHitAssociationMutableCollectionIterator&&) = default;
0104   ~MCRecoCalorimeterHitAssociationMutableCollectionIterator() = default;
0105 
0106   auto operator<=>(const MCRecoCalorimeterHitAssociationMutableCollectionIterator& other) const {
0107     return m_index <=> other.m_index;
0108   }
0109 
0110   bool operator==(const MCRecoCalorimeterHitAssociationMutableCollectionIterator& x) const {
0111     return m_index ==  x.m_index;
0112   }
0113 
0114   reference operator*() const;
0115   pointer operator->();
0116   MCRecoCalorimeterHitAssociationMutableCollectionIterator& operator++();
0117   MCRecoCalorimeterHitAssociationMutableCollectionIterator operator++(int);
0118   MCRecoCalorimeterHitAssociationMutableCollectionIterator& operator--();
0119   MCRecoCalorimeterHitAssociationMutableCollectionIterator operator--(int);
0120   MCRecoCalorimeterHitAssociationMutableCollectionIterator& operator+=(difference_type n);
0121   MCRecoCalorimeterHitAssociationMutableCollectionIterator operator+(difference_type n) const;
0122   friend MCRecoCalorimeterHitAssociationMutableCollectionIterator operator+(difference_type n, const MCRecoCalorimeterHitAssociationMutableCollectionIterator& it);
0123   MCRecoCalorimeterHitAssociationMutableCollectionIterator& operator-=(difference_type n);
0124   MCRecoCalorimeterHitAssociationMutableCollectionIterator operator-(difference_type n) const;
0125   reference operator[](difference_type n) const;
0126   difference_type operator-(const MCRecoCalorimeterHitAssociationMutableCollectionIterator& other) const;
0127 
0128 private:
0129   size_t m_index{0};
0130   MutableMCRecoCalorimeterHitAssociation m_object { podio::utils::MaybeSharedPtr<MCRecoCalorimeterHitAssociationObj>{nullptr} };
0131   const MCRecoCalorimeterHitAssociationObjPointerContainer* m_collection{nullptr};
0132 };
0133 
0134 
0135 /**
0136 A Collection is identified by an ID.
0137 */
0138 class MCRecoCalorimeterHitAssociationCollection : public podio::CollectionBase {
0139 public:
0140   using value_type = MCRecoCalorimeterHitAssociation;
0141   using mutable_type = MutableMCRecoCalorimeterHitAssociation;
0142   using const_iterator = MCRecoCalorimeterHitAssociationCollectionIterator;
0143   using iterator = MCRecoCalorimeterHitAssociationMutableCollectionIterator;
0144   using difference_type = ptrdiff_t;
0145   using size_type = size_t;
0146   using const_reverse_iterator = std::reverse_iterator<const_iterator>;
0147   using reverse_iterator = std::reverse_iterator<iterator>;
0148 
0149   MCRecoCalorimeterHitAssociationCollection() = default;
0150   MCRecoCalorimeterHitAssociationCollection(MCRecoCalorimeterHitAssociationCollectionData&& data, bool isSubsetColl);
0151   // This is a move-only type
0152   MCRecoCalorimeterHitAssociationCollection(const MCRecoCalorimeterHitAssociationCollection& ) = delete;
0153   MCRecoCalorimeterHitAssociationCollection& operator=(const MCRecoCalorimeterHitAssociationCollection& ) = delete;
0154   MCRecoCalorimeterHitAssociationCollection(MCRecoCalorimeterHitAssociationCollection&&) = default;
0155   MCRecoCalorimeterHitAssociationCollection& operator=(MCRecoCalorimeterHitAssociationCollection&&) = default;
0156 
0157 //  MCRecoCalorimeterHitAssociationCollection(MCRecoCalorimeterHitAssociationVector* data, uint32_t collectionID);
0158   ~MCRecoCalorimeterHitAssociationCollection() override;
0159 
0160   constexpr static std::string_view typeName = "edm4eic::MCRecoCalorimeterHitAssociationCollection";
0161   constexpr static std::string_view valueTypeName = "edm4eic::MCRecoCalorimeterHitAssociation";
0162   constexpr static std::string_view dataTypeName = "edm4eic::MCRecoCalorimeterHitAssociationData";
0163 
0164   void clear() final;
0165 
0166   /// Cppyy protocol to setup the pythonizations for this class. Not to be called directly.
0167   static void __cppyy_pythonize__(PyObject* klass, const std::string& name){
0168         podio::detail::pythonizations::pythonize_subscript(klass, name);
0169   }
0170 
0171   /// Print this collection to the passed stream
0172   void print(std::ostream& os=std::cout, bool flush=true) const final;
0173 
0174   /// Append a new object to the collection, and return this object.
0175   MutableMCRecoCalorimeterHitAssociation create();
0176 
0177   /// Append a new object to the collection, and return this object.
0178   /// Initialized with the parameters given
0179   template<typename... Args>
0180   MutableMCRecoCalorimeterHitAssociation create(Args&&... args);
0181 
0182   /// number of elements in the collection
0183   std::size_t size() const final;
0184 
0185   /// maximal number of elements in the collection
0186   std::size_t max_size() const final;
0187 
0188   /// Is the collection empty
0189   bool empty() const final;
0190 
0191   /// fully qualified type name
0192   const std::string_view getTypeName() const final { return typeName; }
0193   /// fully qualified type name of elements - with namespace
0194   const std::string_view getValueTypeName() const final { return valueTypeName; }
0195   /// fully qualified type name of stored POD elements - with namespace
0196   const std::string_view getDataTypeName() const final { return dataTypeName; }
0197   /// schema version
0198   podio::SchemaVersionT getSchemaVersion() const final;
0199 
0200   bool isSubsetCollection() const final {
0201     return m_isSubsetColl;
0202   }
0203 
0204   void setSubsetCollection(bool setSubset=true) final;
0205 
0206   /// Returns the const object of given index
0207   MCRecoCalorimeterHitAssociation operator[](std::size_t index) const;
0208   /// Returns the object of a given index
0209   MutableMCRecoCalorimeterHitAssociation operator[](std::size_t index);
0210   /// Returns the const object of given index
0211   MCRecoCalorimeterHitAssociation at(std::size_t index) const;
0212   /// Returns the object of given index
0213   MutableMCRecoCalorimeterHitAssociation at(std::size_t index);
0214 
0215 
0216   /// Append object to the collection
0217   void push_back(const MutableMCRecoCalorimeterHitAssociation& object);
0218   /// Append an object to the (subset) collection
0219   void push_back(const MCRecoCalorimeterHitAssociation& object);
0220 
0221   void prepareForWrite() const final;
0222   void prepareAfterRead() final;
0223   bool setReferences(const podio::ICollectionProvider* collectionProvider) final;
0224 
0225   /// Get the collection buffers for this collection
0226   podio::CollectionWriteBuffers getBuffers() final;
0227 
0228   void setID(uint32_t ID) final {
0229     m_collectionID = ID;
0230     if (!m_isSubsetColl) {
0231       std::for_each(m_storage.entries.begin(), m_storage.entries.end(),
0232                   [ID] (MCRecoCalorimeterHitAssociationObj* obj) { obj->id = {obj->id.index, static_cast<uint32_t>(ID)}; }
0233       );
0234     }
0235   }
0236 
0237   uint32_t getID() const final {
0238     return m_collectionID;
0239   }
0240 
0241   /// check if the collection has a valid ID
0242   bool hasID() const final {
0243     return getID() != static_cast<uint32_t>(podio::ObjectID::untracked) &&
0244         getID() != static_cast<uint32_t>(podio::ObjectID::invalid);
0245   }
0246 
0247   [[deprecated("isValid will be removed, use hasID() if you want to check if it has an ID, otherwise assume the "
0248                "collection is valid")]]
0249   bool isValid() const final {
0250     return hasID();
0251   }
0252 
0253   size_t getDatamodelRegistryIndex() const final;
0254 
0255   // support for the iterator protocol
0256   iterator begin() {
0257     return iterator(0, &m_storage.entries);
0258   }
0259   const_iterator begin() const {
0260     return const_iterator(0, &m_storage.entries);
0261   }
0262   const_iterator cbegin() const {
0263     return begin();
0264   }
0265   iterator end() {
0266     return iterator(m_storage.entries.size(), &m_storage.entries);
0267   }
0268   const_iterator end() const {
0269     return const_iterator(m_storage.entries.size(), &m_storage.entries);
0270   }
0271   const_iterator cend() const {
0272     return end();
0273   }
0274   // reverse iterators
0275   reverse_iterator rbegin() {
0276     return reverse_iterator(end());
0277   }
0278   const_reverse_iterator rbegin() const {
0279     return const_reverse_iterator(end());
0280   }
0281   const_reverse_iterator crbegin() const {
0282     return rbegin();
0283   }
0284   reverse_iterator rend() {
0285     return reverse_iterator(begin());
0286   }
0287   const_reverse_iterator rend() const {
0288     return const_reverse_iterator(begin());
0289   }
0290   const_reverse_iterator crend() const {
0291     return rend();
0292   }
0293 
0294 
0295   std::vector<float> weight(const size_t nElem = 0) const;
0296 
0297 private:
0298   // For setReferences, we need to give our own CollectionData access to our
0299   // private entries. Otherwise we would need to expose a public member function
0300   // that gives access to the Obj* which is definitely not what we want
0301   friend class MCRecoCalorimeterHitAssociationCollectionData;
0302 
0303   mutable bool m_isPrepared{false};
0304   bool m_isSubsetColl{false};
0305   uint32_t m_collectionID{static_cast<uint32_t>(podio::ObjectID::untracked)};
0306   mutable std::unique_ptr<std::mutex> m_storageMtx{std::make_unique<std::mutex>()};
0307   mutable MCRecoCalorimeterHitAssociationCollectionData m_storage{};
0308 };
0309 
0310 std::ostream& operator<<(std::ostream& o, const MCRecoCalorimeterHitAssociationCollection& v);
0311 
0312 template<typename... Args>
0313 MutableMCRecoCalorimeterHitAssociation MCRecoCalorimeterHitAssociationCollection::create(Args&&... args) {
0314   if (m_isSubsetColl) {
0315     throw std::logic_error("Cannot create new elements on a subset collection");
0316   }
0317   auto obj = new MCRecoCalorimeterHitAssociationObj({static_cast<int>(m_storage.entries.size()), m_collectionID}, {std::forward<Args>(args)...});
0318   m_storage.entries.push_back(obj);
0319 
0320   return MutableMCRecoCalorimeterHitAssociation(podio::utils::MaybeSharedPtr(obj));
0321 }
0322 
0323 #if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
0324 void to_json(nlohmann::json& j, const MCRecoCalorimeterHitAssociationCollection& collection);
0325 #endif
0326 
0327 } // namespace edm4eic
0328 
0329 
0330 // This is needed to avoid triggering opening every library in LD_LIBRARY_PATH
0331 // until it's fixed in ROOT. See https://github.com/root-project/root/issues/18489
0332 // and https://github.com/AIDASoft/podio/issues/770
0333 #if defined(__clang__)
0334   #pragma clang diagnostic push
0335   #pragma clang diagnostic ignored "-Wunknown-warning-option"
0336   #pragma clang diagnostic ignored "-Wdeprecated-redundant-constexpr-static-def"
0337   #pragma clang diagnostic ignored "-Wdeprecated"
0338 constexpr std::string_view edm4eic::MCRecoCalorimeterHitAssociationCollection::typeName;
0339 constexpr std::string_view edm4eic::MCRecoCalorimeterHitAssociationCollection::valueTypeName;
0340 constexpr std::string_view edm4eic::MCRecoCalorimeterHitAssociationCollection::dataTypeName;
0341   #pragma clang diagnostic pop
0342 #elif defined(__GNUC__)
0343   #pragma GCC diagnostic push
0344   #pragma GCC diagnostic ignored "-Wdeprecated"
0345 constexpr std::string_view edm4eic::MCRecoCalorimeterHitAssociationCollection::typeName;
0346 constexpr std::string_view edm4eic::MCRecoCalorimeterHitAssociationCollection::valueTypeName;
0347 constexpr std::string_view edm4eic::MCRecoCalorimeterHitAssociationCollection::dataTypeName;
0348   #pragma GCC diagnostic pop
0349 #endif
0350 
0351 
0352 #endif