File indexing completed on 2025-01-18 09:55:29
0001
0002
0003 #ifndef EDM4EIC_MCRecoClusterParticleAssociationOBJ_H
0004 #define EDM4EIC_MCRecoClusterParticleAssociationOBJ_H
0005
0006
0007 #include "edm4eic/MCRecoClusterParticleAssociationData.h"
0008
0009 #include "podio/ObjectID.h"
0010
0011
0012 namespace edm4eic {
0013 class Cluster;
0014 }
0015 namespace edm4hep {
0016 class MCParticle;
0017 }
0018
0019
0020 namespace edm4eic {
0021
0022 class MCRecoClusterParticleAssociation;
0023
0024 class MCRecoClusterParticleAssociationObj {
0025 public:
0026
0027 MCRecoClusterParticleAssociationObj();
0028
0029 MCRecoClusterParticleAssociationObj(const MCRecoClusterParticleAssociationObj&);
0030
0031
0032 MCRecoClusterParticleAssociationObj(const podio::ObjectID id, MCRecoClusterParticleAssociationData data);
0033
0034 MCRecoClusterParticleAssociationObj& operator=(const MCRecoClusterParticleAssociationObj&) = delete;
0035 virtual ~MCRecoClusterParticleAssociationObj();
0036
0037 public:
0038 podio::ObjectID id;
0039 MCRecoClusterParticleAssociationData data;
0040 edm4eic::Cluster* m_rec{nullptr};
0041 edm4hep::MCParticle* m_sim{nullptr};
0042 };
0043
0044 }
0045
0046
0047 #endif