Warning, file /include/edm4eic/MCRecoVertexParticleAssociationCollectionData.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003 #ifndef EDM4EIC_MCRecoVertexParticleAssociation_CollectionData_H
0004 #define EDM4EIC_MCRecoVertexParticleAssociation_CollectionData_H
0005
0006
0007 #include "edm4eic/MCRecoVertexParticleAssociationData.h"
0008 #include "edm4eic/MCRecoVertexParticleAssociationObj.h"
0009 #include "edm4eic/MCRecoVertexParticleAssociation.h"
0010 #include "edm4eic/Vertex.h"
0011 #include "edm4hep/MCParticle.h"
0012
0013
0014
0015
0016 #include "podio/CollectionBuffers.h"
0017 #include "podio/ICollectionProvider.h"
0018
0019 #include <deque>
0020 #include <memory>
0021
0022 namespace edm4eic {
0023
0024
0025 using MCRecoVertexParticleAssociationObjPointerContainer = std::deque<MCRecoVertexParticleAssociationObj*>;
0026 using MCRecoVertexParticleAssociationDataContainer = std::vector<MCRecoVertexParticleAssociationData>;
0027
0028
0029
0030
0031
0032
0033 class MCRecoVertexParticleAssociationCollectionData {
0034 public:
0035
0036
0037
0038 MCRecoVertexParticleAssociationObjPointerContainer entries{};
0039
0040
0041
0042
0043 MCRecoVertexParticleAssociationCollectionData();
0044
0045
0046
0047
0048 MCRecoVertexParticleAssociationCollectionData(podio::CollectionReadBuffers buffers, bool isSubsetColl);
0049
0050
0051
0052
0053 MCRecoVertexParticleAssociationCollectionData(const MCRecoVertexParticleAssociationCollectionData&) = delete;
0054 MCRecoVertexParticleAssociationCollectionData& operator=(const MCRecoVertexParticleAssociationCollectionData&) = delete;
0055 MCRecoVertexParticleAssociationCollectionData(MCRecoVertexParticleAssociationCollectionData&& other) = default;
0056 MCRecoVertexParticleAssociationCollectionData& operator=(MCRecoVertexParticleAssociationCollectionData&& other) = default;
0057
0058
0059
0060
0061 ~MCRecoVertexParticleAssociationCollectionData() = default;
0062
0063 void clear(bool isSubsetColl);
0064
0065 podio::CollectionWriteBuffers getCollectionBuffers(bool isSubsetColl);
0066
0067 void prepareForWrite(bool isSubsetColl);
0068
0069 void prepareAfterRead(uint32_t collectionID);
0070
0071 void makeSubsetCollection();
0072
0073
0074 bool setReferences(const podio::ICollectionProvider* collectionProvider, bool isSubsetColl);
0075
0076 private:
0077
0078 podio::UVecPtr<edm4eic::Vertex> m_rel_rec{std::make_unique<std::vector<edm4eic::Vertex>>()};
0079 podio::UVecPtr<edm4hep::MCParticle> m_rel_sim{std::make_unique<std::vector<edm4hep::MCParticle>>()};
0080
0081
0082
0083
0084 podio::CollRefCollection m_refCollections{};
0085 podio::VectorMembersInfo m_vecmem_info{};
0086 std::unique_ptr<MCRecoVertexParticleAssociationDataContainer> m_data{nullptr};
0087 };
0088
0089
0090 }
0091
0092
0093 #endif