File indexing completed on 2025-07-11 08:30:06
0001
0002
0003 #ifndef EDM4EIC_MCRecoCalorimeterHitAssociationOBJ_H
0004 #define EDM4EIC_MCRecoCalorimeterHitAssociationOBJ_H
0005
0006
0007 #include "edm4eic/MCRecoCalorimeterHitAssociationData.h"
0008
0009 #include "podio/ObjectID.h"
0010 #include <memory>
0011
0012 namespace edm4hep {
0013 class RawCalorimeterHit;
0014 class SimCalorimeterHit;
0015 }
0016
0017
0018 namespace edm4eic {
0019
0020 class MCRecoCalorimeterHitAssociation;
0021
0022 class MCRecoCalorimeterHitAssociationObj {
0023 public:
0024
0025 MCRecoCalorimeterHitAssociationObj();
0026
0027 MCRecoCalorimeterHitAssociationObj(const MCRecoCalorimeterHitAssociationObj&);
0028
0029
0030 MCRecoCalorimeterHitAssociationObj(const podio::ObjectID id, MCRecoCalorimeterHitAssociationData data);
0031
0032 MCRecoCalorimeterHitAssociationObj& operator=(const MCRecoCalorimeterHitAssociationObj&) = delete;
0033 virtual ~MCRecoCalorimeterHitAssociationObj();
0034
0035 public:
0036 podio::ObjectID id;
0037 MCRecoCalorimeterHitAssociationData data;
0038 std::unique_ptr<edm4hep::RawCalorimeterHit> m_rawHit{nullptr};
0039 std::unique_ptr<edm4hep::SimCalorimeterHit> m_simHit{nullptr};
0040 };
0041
0042 }
0043
0044
0045 #endif