Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:55:40

0001 // AUTOMATICALLY GENERATED FILE - DO NOT EDIT
0002 
0003 #ifndef EDM4HEP_Track_CollectionData_H
0004 #define EDM4HEP_Track_CollectionData_H
0005 
0006 // datamodel specific includes
0007 #include "edm4hep/TrackData.h"
0008 #include "edm4hep/TrackObj.h"
0009 #include "edm4hep/TrackerHit.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 TrackObjPointerContainer = std::deque<TrackObj*>;
0023 using TrackDataContainer = std::vector<TrackData>;
0024 
0025 /**
0026  * Class encapsulating everything related to storage of data that is needed by a
0027  * collection.
0028  */
0029 class TrackCollectionData {
0030 public:
0031   /**
0032    * The Objs of this collection
0033    */
0034   TrackObjPointerContainer entries{};
0035 
0036   /**
0037    * Default constructor setting up the necessary buffers
0038    */
0039   TrackCollectionData();
0040 
0041   /**
0042    * Constructor from existing I/O buffers
0043    */
0044   TrackCollectionData(podio::CollectionReadBuffers buffers, bool isSubsetColl);
0045 
0046   /**
0047    * Non copy-able, move-only class
0048    */
0049   TrackCollectionData(const TrackCollectionData&) = delete;
0050   TrackCollectionData& operator=(const TrackCollectionData&) = delete;
0051   TrackCollectionData(TrackCollectionData&& other) = default;
0052   TrackCollectionData& operator=(TrackCollectionData&& other) = default;
0053 
0054   /**
0055    * Destructor
0056    */
0057   ~TrackCollectionData() = 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   void createRelations(TrackObj* obj);
0070 
0071   bool setReferences(const podio::ICollectionProvider* collectionProvider, bool isSubsetColl);
0072 
0073 private:
0074   // members to handle 1-to-N-relations
0075   podio::UVecPtr<edm4hep::TrackerHit> m_rel_trackerHits;                    ///< Relation buffer for read / write
0076   std::vector<podio::UVecPtr<edm4hep::TrackerHit>> m_rel_trackerHits_tmp{}; ///< Relation buffer for internal
0077                                                                             ///< book-keeping
0078   podio::UVecPtr<edm4hep::Track> m_rel_tracks;                              ///< Relation buffer for read / write
0079   std::vector<podio::UVecPtr<edm4hep::Track>> m_rel_tracks_tmp{}; ///< Relation buffer for internal book-keeping
0080 
0081   // members to handle vector members
0082   podio::UVecPtr<std::int32_t> m_vec_subdetectorHitNumbers{nullptr}; /// combined vector of all objects in collection
0083   std::vector<podio::UVecPtr<std::int32_t>> m_vecs_subdetectorHitNumbers{}; /// pointers to individual member vectors
0084   podio::UVecPtr<edm4hep::TrackState> m_vec_trackStates{nullptr}; /// combined vector of all objects in collection
0085   std::vector<podio::UVecPtr<edm4hep::TrackState>> m_vecs_trackStates{}; /// pointers to individual member vectors
0086   podio::UVecPtr<edm4hep::Quantity> m_vec_dxQuantities{nullptr};        /// combined vector of all objects in collection
0087   std::vector<podio::UVecPtr<edm4hep::Quantity>> m_vecs_dxQuantities{}; /// pointers to individual member vectors
0088 
0089   // I/O related buffers
0090   podio::CollRefCollection m_refCollections{};
0091   podio::VectorMembersInfo m_vecmem_info{};
0092   std::unique_ptr<TrackDataContainer> m_data{nullptr};
0093 };
0094 
0095 } // namespace edm4hep
0096 
0097 #endif