Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:55:39

0001 // AUTOMATICALLY GENERATED FILE - DO NOT EDIT
0002 
0003 #ifndef EDM4HEP_ReconstructedParticleOBJ_H
0004 #define EDM4HEP_ReconstructedParticleOBJ_H
0005 
0006 // data model specific includes
0007 #include "edm4hep/Cluster.h"
0008 #include "edm4hep/ParticleID.h"
0009 #include "edm4hep/ReconstructedParticleData.h"
0010 #include "edm4hep/Track.h"
0011 #include <vector>
0012 
0013 #include "podio/ObjectID.h"
0014 #include <vector>
0015 // forward declarations
0016 namespace edm4hep {
0017 class Vertex;
0018 class ParticleID;
0019 } // namespace edm4hep
0020 
0021 namespace edm4hep {
0022 
0023 class ReconstructedParticle;
0024 
0025 class ReconstructedParticleObj {
0026 public:
0027   /// constructor
0028   ReconstructedParticleObj();
0029   /// copy constructor (does a deep-copy of relation containers)
0030   ReconstructedParticleObj(const ReconstructedParticleObj&);
0031   /// constructor from ObjectID and ReconstructedParticleData
0032   /// does not initialize the internal relation containers
0033   ReconstructedParticleObj(const podio::ObjectID id, ReconstructedParticleData data);
0034   /// No assignment operator
0035   ReconstructedParticleObj& operator=(const ReconstructedParticleObj&) = delete;
0036   virtual ~ReconstructedParticleObj();
0037 
0038 public:
0039   podio::ObjectID id;
0040   ReconstructedParticleData data;
0041   edm4hep::Vertex* m_startVertex{nullptr};
0042   edm4hep::ParticleID* m_particleIDUsed{nullptr};
0043   std::vector<edm4hep::Cluster>* m_clusters{nullptr};
0044   std::vector<edm4hep::Track>* m_tracks{nullptr};
0045   std::vector<edm4hep::ReconstructedParticle>* m_particles{nullptr};
0046   std::vector<edm4hep::ParticleID>* m_particleIDs{nullptr};
0047 };
0048 
0049 } // namespace edm4hep
0050 
0051 #endif