File indexing completed on 2025-09-16 08:53:34
0001
0002
0003 #ifndef EDM4HEP_SimCalorimeterHitDATA_H
0004 #define EDM4HEP_SimCalorimeterHitDATA_H
0005
0006 #include "edm4hep/Vector3f.h"
0007 #include <cstdint>
0008
0009 namespace edm4hep {
0010
0011
0012
0013
0014
0015
0016 class SimCalorimeterHitData {
0017 public:
0018 std::uint64_t cellID{};
0019 float energy{};
0020 ::edm4hep::Vector3f position{};
0021
0022 unsigned int contributions_begin{};
0023 unsigned int contributions_end{};
0024 };
0025
0026 }
0027
0028
0029 #endif