File indexing completed on 2026-04-17 08:20:53
0001
0002
0003 #ifndef EDM4EIC_RawCALOROCHitDATA_H
0004 #define EDM4EIC_RawCALOROCHitDATA_H
0005
0006 #include <cstdint>
0007
0008 namespace edm4eic {
0009
0010
0011
0012
0013
0014
0015 class RawCALOROCHitData {
0016 public:
0017 std::uint64_t cellID{};
0018 std::int32_t samplePhase{};
0019 std::int32_t timeStamp{};
0020
0021 unsigned int aSamples_begin{};
0022 unsigned int aSamples_end{};
0023 unsigned int bSamples_begin{};
0024 unsigned int bSamples_end{};
0025 };
0026
0027
0028 namespace v890 {
0029 using RawCALOROCHitData = edm4eic::RawCALOROCHitData;
0030 }
0031
0032
0033 }
0034
0035
0036 #endif