File indexing completed on 2025-12-22 10:09:08
0001
0002
0003 #ifndef EDM4HEP_VertexDATA_H
0004 #define EDM4HEP_VertexDATA_H
0005
0006 #include "edm4hep/CovMatrix3f.h"
0007 #include "edm4hep/Vector3f.h"
0008 #include <cstdint>
0009
0010 namespace edm4hep {
0011
0012
0013
0014
0015
0016 class VertexData {
0017 public:
0018 std::uint32_t type{};
0019 float chi2{};
0020 std::int32_t ndf{};
0021 ::edm4hep::Vector3f position{};
0022 ::edm4hep::CovMatrix3f covMatrix{};
0023 std::int32_t algorithmType{};
0024
0025 unsigned int parameters_begin{};
0026 unsigned int parameters_end{};
0027 unsigned int particles_begin{};
0028 unsigned int particles_end{};
0029 };
0030
0031 namespace v5 {
0032 using VertexData = edm4hep::VertexData;
0033 }
0034
0035 }
0036
0037 #endif