File indexing completed on 2025-09-18 09:11:00
0001
0002
0003 #ifndef EDM4HEP_VertexOBJ_H
0004 #define EDM4HEP_VertexOBJ_H
0005
0006
0007 #include "edm4hep/VertexData.h"
0008 #include "edm4hep/ReconstructedParticle.h"
0009 #include <vector>
0010
0011 #include "podio/ObjectID.h"
0012 #include <vector>
0013
0014
0015
0016 namespace edm4hep {
0017
0018 class Vertex;
0019
0020 class VertexObj {
0021 public:
0022
0023 VertexObj();
0024
0025 VertexObj(const VertexObj&);
0026
0027
0028 VertexObj(const podio::ObjectID& id, const VertexData& data);
0029
0030 VertexObj& operator=(const VertexObj&) = delete;
0031 virtual ~VertexObj();
0032
0033 public:
0034 podio::ObjectID id;
0035 VertexData data;
0036 std::vector<edm4hep::ReconstructedParticle>* m_particles{nullptr};
0037 std::vector<float>* m_parameters{nullptr};
0038 };
0039
0040 }
0041
0042
0043 #endif