File indexing completed on 2025-12-30 10:08:03
0001
0002
0003 #ifndef EDM4EIC_VertexDATA_H
0004 #define EDM4EIC_VertexDATA_H
0005
0006 #include "edm4eic/Cov4f.h"
0007 #include "edm4hep/Vector4f.h"
0008 #include <cstdint>
0009
0010 namespace edm4eic {
0011
0012
0013
0014
0015
0016
0017 class VertexData {
0018 public:
0019 std::int32_t type{};
0020 float chi2{};
0021 int ndf{};
0022 ::edm4hep::Vector4f position{};
0023 ::edm4eic::Cov4f positionError{};
0024
0025 unsigned int associatedParticles_begin{};
0026 unsigned int associatedParticles_end{};
0027 };
0028
0029
0030 namespace v850 {
0031 using VertexData = edm4eic::VertexData;
0032 }
0033
0034
0035 }
0036
0037
0038 #endif