File indexing completed on 2025-12-25 09:46:06
0001
0002
0003 #ifndef EDM4EIC_TrackParametersDATA_H
0004 #define EDM4EIC_TrackParametersDATA_H
0005
0006 #include "edm4eic/Cov6f.h"
0007 #include "edm4hep/Vector2f.h"
0008 #include <cstdint>
0009
0010 namespace edm4eic {
0011
0012
0013
0014
0015
0016
0017 class TrackParametersData {
0018 public:
0019 std::int32_t type{};
0020 std::uint64_t surface{};
0021 ::edm4hep::Vector2f loc{};
0022 float theta{};
0023 float phi{};
0024 float qOverP{};
0025 float time{};
0026 std::int32_t pdg{};
0027 ::edm4eic::Cov6f covariance{};
0028
0029 };
0030
0031
0032 namespace v850 {
0033 using TrackParametersData = edm4eic::TrackParametersData;
0034 }
0035
0036
0037 }
0038
0039
0040 #endif