Back to home page

EIC code displayed by LXR

 
 

    


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

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