File indexing completed on 2025-01-18 09:55:32
0001
0002
0003 #ifndef EDM4EIC_TrackDATA_H
0004 #define EDM4EIC_TrackDATA_H
0005
0006 #include "edm4eic/Cov6f.h"
0007 #include "edm4hep/Vector3f.h"
0008 #include <cstdint>
0009
0010 namespace edm4eic {
0011
0012
0013
0014
0015
0016
0017 class TrackData {
0018 public:
0019 std::int32_t type{};
0020 ::edm4hep::Vector3f position{};
0021 ::edm4hep::Vector3f momentum{};
0022 ::edm4eic::Cov6f positionMomentumCovariance{};
0023 float time{};
0024 float timeError{};
0025 float charge{};
0026 float chi2{};
0027 std::uint32_t ndf{};
0028 std::int32_t pdg{};
0029
0030 unsigned int measurements_begin{};
0031 unsigned int measurements_end{};
0032 unsigned int tracks_begin{};
0033 unsigned int tracks_end{};
0034 };
0035
0036 }
0037
0038
0039 #endif