Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-05-11 08:50:17

0001 // AUTOMATICALLY GENERATED FILE - DO NOT EDIT
0002 
0003 #ifndef EDM4EIC_SimPulseOBJ_H
0004 #define EDM4EIC_SimPulseOBJ_H
0005 
0006 // data model specific includes
0007 #include "edm4eic/SimPulseData.h"
0008 #include "edm4hep/MCParticle.h"
0009 #include "edm4hep/SimCalorimeterHit.h"
0010 #include "edm4hep/SimTrackerHit.h"
0011 #include <vector>
0012 
0013 #include "podio/ObjectID.h"
0014 #include <vector>
0015 
0016 
0017 
0018 namespace edm4eic {
0019 
0020 class SimPulse;
0021 
0022 class SimPulseObj {
0023 public:
0024   /// constructor
0025   SimPulseObj();
0026   /// copy constructor (does a deep-copy of relation containers)
0027   SimPulseObj(const SimPulseObj&);
0028   /// constructor from ObjectID and SimPulseData
0029   /// does not initialize the internal relation containers
0030   SimPulseObj(const podio::ObjectID id, SimPulseData data);
0031   /// No assignment operator
0032   SimPulseObj& operator=(const SimPulseObj&) = delete;
0033   virtual ~SimPulseObj();
0034 
0035 public:
0036   podio::ObjectID id;
0037   SimPulseData data;
0038   std::vector<edm4hep::SimCalorimeterHit>* m_calorimeterHits{nullptr};
0039   std::vector<edm4hep::SimTrackerHit>* m_trackerHits{nullptr};
0040   std::vector<edm4eic::SimPulse>* m_pulses{nullptr};
0041   std::vector<edm4hep::MCParticle>* m_particles{nullptr};
0042   std::vector<float>* m_amplitude{nullptr};
0043 };
0044 
0045 } // namespace edm4eic
0046 
0047 
0048 #endif