Warning, file /include/edm4eic/CalorimeterHitData.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 EDM4EIC_CalorimeterHitDATA_H
0004 #define EDM4EIC_CalorimeterHitDATA_H
0005
0006 #include "edm4hep/Vector3f.h"
0007 #include <cstdint>
0008
0009 namespace edm4eic {
0010
0011
0012
0013
0014
0015
0016 class CalorimeterHitData {
0017 public:
0018 std::uint64_t cellID{};
0019 float energy{};
0020 float energyError{};
0021 float time{};
0022 float timeError{};
0023 ::edm4hep::Vector3f position{};
0024 ::edm4hep::Vector3f dimension{};
0025 std::int32_t sector{};
0026 std::int32_t layer{};
0027 ::edm4hep::Vector3f local{};
0028
0029 };
0030
0031
0032 namespace v850 {
0033 using CalorimeterHitData = edm4eic::CalorimeterHitData;
0034 }
0035
0036
0037 }
0038
0039
0040 #endif