File indexing completed on 2025-06-03 08:33:23
0001
0002
0003 #ifndef EDM4HEP_ClusterMCParticleLink_CollectionData_H
0004 #define EDM4HEP_ClusterMCParticleLink_CollectionData_H
0005
0006
0007 #include "edm4hep/Cluster.h"
0008 #include "edm4hep/ClusterMCParticleLinkData.h"
0009 #include "edm4hep/ClusterMCParticleLinkObj.h"
0010 #include "edm4hep/MCParticle.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 ClusterMCParticleLinkObjPointerContainer = std::deque<ClusterMCParticleLinkObj*>;
0024 using ClusterMCParticleLinkDataContainer = std::vector<ClusterMCParticleLinkData>;
0025
0026
0027
0028
0029
0030 class ClusterMCParticleLinkCollectionData {
0031 public:
0032
0033
0034
0035 ClusterMCParticleLinkObjPointerContainer entries{};
0036
0037
0038
0039
0040 ClusterMCParticleLinkCollectionData();
0041
0042
0043
0044
0045 ClusterMCParticleLinkCollectionData(podio::CollectionReadBuffers buffers, bool isSubsetColl);
0046
0047
0048
0049
0050 ClusterMCParticleLinkCollectionData(const ClusterMCParticleLinkCollectionData&) = delete;
0051 ClusterMCParticleLinkCollectionData& operator=(const ClusterMCParticleLinkCollectionData&) = delete;
0052 ClusterMCParticleLinkCollectionData(ClusterMCParticleLinkCollectionData&& other) = default;
0053 ClusterMCParticleLinkCollectionData& operator=(ClusterMCParticleLinkCollectionData&& other) = default;
0054
0055
0056
0057
0058 ~ClusterMCParticleLinkCollectionData() = default;
0059
0060 void clear(bool isSubsetColl);
0061
0062 podio::CollectionWriteBuffers getCollectionBuffers(bool isSubsetColl);
0063
0064 void prepareForWrite(bool isSubsetColl);
0065
0066 void prepareAfterRead(uint32_t collectionID);
0067
0068 void makeSubsetCollection();
0069
0070 bool setReferences(const podio::ICollectionProvider* collectionProvider, bool isSubsetColl);
0071
0072 private:
0073
0074 podio::UVecPtr<edm4hep::Cluster> m_rel_from{nullptr};
0075 podio::UVecPtr<edm4hep::MCParticle> m_rel_to{nullptr};
0076
0077
0078
0079
0080 podio::CollRefCollection m_refCollections{};
0081 podio::VectorMembersInfo m_vecmem_info{};
0082 std::unique_ptr<ClusterMCParticleLinkDataContainer> m_data{nullptr};
0083 };
0084
0085 }
0086
0087 #endif