Warning, file /include/edm4hep/RecDqdxData.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_RecDqdxDATA_H
0004 #define EDM4HEP_RecDqdxDATA_H
0005
0006 #include "edm4hep/Hypothesis.h"
0007 #include "edm4hep/Quantity.h"
0008 #include <array>
0009 #include <cstdint>
0010
0011 namespace edm4hep {
0012
0013
0014
0015
0016
0017 class RecDqdxData {
0018 public:
0019 ::edm4hep::Quantity dQdx{};
0020 std::int16_t particleType{};
0021 std::int16_t type{};
0022 std::array<edm4hep::Hypothesis, 5> hypotheses{};
0023
0024 unsigned int hitData_begin{};
0025 unsigned int hitData_end{};
0026 };
0027
0028 }
0029
0030 #endif