Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-09-17 08:55:13

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