Warning, file /include/edm4hep/TrackData.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 EDM4HEP_TrackDATA_H
0004 #define EDM4HEP_TrackDATA_H
0005
0006 #include <cstdint>
0007
0008 namespace edm4hep {
0009
0010
0011
0012
0013
0014 class TrackData {
0015 public:
0016 std::int32_t type{};
0017 float chi2{};
0018 std::int32_t ndf{};
0019 float dEdx{};
0020 float dEdxError{};
0021 float radiusOfInnermostHit{};
0022
0023 unsigned int subdetectorHitNumbers_begin{};
0024 unsigned int subdetectorHitNumbers_end{};
0025 unsigned int trackStates_begin{};
0026 unsigned int trackStates_end{};
0027 unsigned int dxQuantities_begin{};
0028 unsigned int dxQuantities_end{};
0029 unsigned int trackerHits_begin{};
0030 unsigned int trackerHits_end{};
0031 unsigned int tracks_begin{};
0032 unsigned int tracks_end{};
0033 };
0034
0035 }
0036
0037 #endif