Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-09-18 09:10:50

0001 // AUTOMATICALLY GENERATED FILE - DO NOT EDIT
0002 
0003 #ifndef EDM4HEP_CaloHitContributionOBJ_H
0004 #define EDM4HEP_CaloHitContributionOBJ_H
0005 
0006 // data model specific includes
0007 #include "edm4hep/CaloHitContributionData.h"
0008 
0009 #include "podio/ObjectID.h"
0010 #include <memory>
0011 // forward declarations
0012 namespace edm4hep {
0013 class MCParticle;
0014 }
0015 
0016 
0017 namespace edm4hep {
0018 
0019 class CaloHitContribution;
0020 
0021 class CaloHitContributionObj {
0022 public:
0023   /// constructor
0024   CaloHitContributionObj();
0025   /// copy constructor (does a deep-copy of relation containers)
0026   CaloHitContributionObj(const CaloHitContributionObj&);
0027   /// constructor from ObjectID and CaloHitContributionData
0028   /// does not initialize the internal relation containers
0029   CaloHitContributionObj(const podio::ObjectID& id, const CaloHitContributionData& data);
0030   /// No assignment operator
0031   CaloHitContributionObj& operator=(const CaloHitContributionObj&) = delete;
0032   virtual ~CaloHitContributionObj();
0033 
0034 public:
0035   podio::ObjectID id;
0036   CaloHitContributionData data;
0037   std::unique_ptr<edm4hep::MCParticle> m_particle{nullptr};
0038 };
0039 
0040 } // namespace edm4hep
0041 
0042 
0043 #endif