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