File indexing completed on 2025-12-21 09:49:23
0001
0002
0003 #ifndef EDM4HEP_CalorimeterHitDATA_H
0004 #define EDM4HEP_CalorimeterHitDATA_H
0005
0006 #include "edm4hep/Vector3f.h"
0007 #include <cstdint>
0008
0009 namespace edm4hep {
0010
0011
0012
0013
0014
0015 class CalorimeterHitData {
0016 public:
0017 std::uint64_t cellID{};
0018 float energy{};
0019 float energyError{};
0020 float time{};
0021 ::edm4hep::Vector3f position{};
0022 std::int32_t type{};
0023 };
0024
0025 namespace v5 {
0026 using CalorimeterHitData = edm4hep::CalorimeterHitData;
0027 }
0028
0029 }
0030
0031 #endif