File indexing completed on 2025-10-13 09:14:34
0001
0002
0003 #ifndef EDM4EIC_HGCROCSample_H
0004 #define EDM4EIC_HGCROCSample_H
0005
0006 #include <cstdint>
0007 #include <ostream>
0008
0009 #if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
0010 #include "nlohmann/json_fwd.hpp"
0011 #endif
0012
0013 namespace edm4eic {
0014
0015
0016
0017
0018
0019 class HGCROCSample {
0020 public:
0021 std::uint16_t ADC{};
0022 std::uint16_t timeOfArrival{};
0023 std::uint16_t timeOverThreshold{};
0024 bool TOTInProgress{};
0025 bool TOTComplete{};
0026
0027
0028 };
0029
0030 std::ostream& operator<<(std::ostream& o, const edm4eic::HGCROCSample& value);
0031
0032 #if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
0033 void to_json(nlohmann::json& j, const HGCROCSample& value);
0034 #endif
0035
0036 }
0037
0038
0039 #endif