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