Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/edm4hep/TrackerHit3DCollectionData.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 // AUTOMATICALLY GENERATED FILE - DO NOT EDIT
0002 
0003 #ifndef EDM4HEP_TrackerHit3D_CollectionData_H
0004 #define EDM4HEP_TrackerHit3D_CollectionData_H
0005 
0006 // datamodel specific includes
0007 #include "edm4hep/TrackerHit3D.h"
0008 #include "edm4hep/TrackerHit3DData.h"
0009 #include "edm4hep/TrackerHit3DObj.h"
0010 
0011 // schema evolution specific includes
0012 
0013 // podio specific includes
0014 #include "podio/CollectionBuffers.h"
0015 #include "podio/ICollectionProvider.h"
0016 
0017 #include <deque>
0018 #include <memory>
0019 
0020 namespace edm4hep {
0021 
0022 using TrackerHit3DObjPointerContainer = std::deque<TrackerHit3DObj*>;
0023 using TrackerHit3DDataContainer = std::vector<TrackerHit3DData>;
0024 
0025 /**
0026  * Class encapsulating everything related to storage of data that is needed by a
0027  * collection.
0028  */
0029 class TrackerHit3DCollectionData {
0030 public:
0031   /**
0032    * The Objs of this collection
0033    */
0034   TrackerHit3DObjPointerContainer entries{};
0035 
0036   /**
0037    * Default constructor setting up the necessary buffers
0038    */
0039   TrackerHit3DCollectionData();
0040 
0041   /**
0042    * Constructor from existing I/O buffers
0043    */
0044   TrackerHit3DCollectionData(podio::CollectionReadBuffers buffers, bool isSubsetColl);
0045 
0046   /**
0047    * Non copy-able, move-only class
0048    */
0049   TrackerHit3DCollectionData(const TrackerHit3DCollectionData&) = delete;
0050   TrackerHit3DCollectionData& operator=(const TrackerHit3DCollectionData&) = delete;
0051   TrackerHit3DCollectionData(TrackerHit3DCollectionData&& other) = default;
0052   TrackerHit3DCollectionData& operator=(TrackerHit3DCollectionData&& other) = default;
0053 
0054   /**
0055    * Destructor
0056    */
0057   ~TrackerHit3DCollectionData() = default;
0058 
0059   void clear(bool isSubsetColl);
0060 
0061   podio::CollectionWriteBuffers getCollectionBuffers(bool isSubsetColl);
0062 
0063   void prepareForWrite(bool isSubsetColl);
0064 
0065   void prepareAfterRead(uint32_t collectionID);
0066 
0067   void makeSubsetCollection();
0068 
0069   bool setReferences(const podio::ICollectionProvider* collectionProvider, bool isSubsetColl);
0070 
0071 private:
0072   // members to handle 1-to-N-relations
0073 
0074   // members to handle vector members
0075 
0076   // I/O related buffers
0077   podio::CollRefCollection m_refCollections{};
0078   podio::VectorMembersInfo m_vecmem_info{};
0079   std::unique_ptr<TrackerHit3DDataContainer> m_data{nullptr};
0080 };
0081 
0082 } // namespace edm4hep
0083 
0084 #endif