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