File indexing completed on 2025-01-18 09:55:36
0001
0002
0003 #ifndef EDM4HEP_MCRecoTrackerHitPlaneAssociation_CollectionData_H
0004 #define EDM4HEP_MCRecoTrackerHitPlaneAssociation_CollectionData_H
0005
0006
0007 #include "edm4hep/MCRecoTrackerHitPlaneAssociationData.h"
0008 #include "edm4hep/MCRecoTrackerHitPlaneAssociationObj.h"
0009 #include "edm4hep/SimTrackerHit.h"
0010 #include "edm4hep/TrackerHitPlane.h"
0011
0012
0013
0014
0015 #include "podio/CollectionBuffers.h"
0016 #include "podio/ICollectionProvider.h"
0017
0018 #include <deque>
0019 #include <memory>
0020
0021 namespace edm4hep {
0022
0023 using MCRecoTrackerHitPlaneAssociationObjPointerContainer = std::deque<MCRecoTrackerHitPlaneAssociationObj*>;
0024 using MCRecoTrackerHitPlaneAssociationDataContainer = std::vector<MCRecoTrackerHitPlaneAssociationData>;
0025
0026
0027
0028
0029
0030 class MCRecoTrackerHitPlaneAssociationCollectionData {
0031 public:
0032
0033
0034
0035 MCRecoTrackerHitPlaneAssociationObjPointerContainer entries{};
0036
0037
0038
0039
0040 MCRecoTrackerHitPlaneAssociationCollectionData();
0041
0042
0043
0044
0045 MCRecoTrackerHitPlaneAssociationCollectionData(podio::CollectionReadBuffers buffers, bool isSubsetColl);
0046
0047
0048
0049
0050 MCRecoTrackerHitPlaneAssociationCollectionData(const MCRecoTrackerHitPlaneAssociationCollectionData&) = delete;
0051 MCRecoTrackerHitPlaneAssociationCollectionData&
0052 operator=(const MCRecoTrackerHitPlaneAssociationCollectionData&) = delete;
0053 MCRecoTrackerHitPlaneAssociationCollectionData(MCRecoTrackerHitPlaneAssociationCollectionData&& other) = default;
0054 MCRecoTrackerHitPlaneAssociationCollectionData&
0055 operator=(MCRecoTrackerHitPlaneAssociationCollectionData&& other) = default;
0056
0057
0058
0059
0060 ~MCRecoTrackerHitPlaneAssociationCollectionData() = default;
0061
0062 void clear(bool isSubsetColl);
0063
0064 podio::CollectionWriteBuffers getCollectionBuffers(bool isSubsetColl);
0065
0066 void prepareForWrite(bool isSubsetColl);
0067
0068 void prepareAfterRead(uint32_t collectionID);
0069
0070 void makeSubsetCollection();
0071
0072 bool setReferences(const podio::ICollectionProvider* collectionProvider, bool isSubsetColl);
0073
0074 private:
0075
0076 podio::UVecPtr<edm4hep::TrackerHitPlane> m_rel_rec{nullptr};
0077 podio::UVecPtr<edm4hep::SimTrackerHit> m_rel_sim{nullptr};
0078
0079
0080
0081
0082 podio::CollRefCollection m_refCollections{};
0083 podio::VectorMembersInfo m_vecmem_info{};
0084 std::unique_ptr<MCRecoTrackerHitPlaneAssociationDataContainer> m_data{nullptr};
0085 };
0086
0087 }
0088
0089 #endif