Warning, file /include/edm4eic/VertexData.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
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
0031
0032 #endif