Warning, file /include/edm4hep/SimTrackerHitData.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_SimTrackerHitDATA_H
0004 #define EDM4HEP_SimTrackerHitDATA_H
0005
0006 #include "edm4hep/Vector3d.h"
0007 #include "edm4hep/Vector3f.h"
0008 #include <cstdint>
0009
0010 namespace edm4hep {
0011
0012
0013
0014
0015
0016 class SimTrackerHitData {
0017 public:
0018 std::uint64_t cellID{};
0019 float eDep{};
0020 float time{};
0021 float pathLength{};
0022 std::int32_t quality{};
0023 ::edm4hep::Vector3d position{};
0024 ::edm4hep::Vector3f momentum{};
0025 };
0026
0027 namespace v5 {
0028 using SimTrackerHitData = edm4hep::SimTrackerHitData;
0029 }
0030
0031 }
0032
0033 #endif