Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-11-03 09:45:05

0001 // AUTOMATICALLY GENERATED FILE - DO NOT EDIT
0002 
0003 #ifndef EDM4HEP_RawTimeSeriesDATA_H
0004 #define EDM4HEP_RawTimeSeriesDATA_H
0005 
0006 #include <cstdint>
0007 
0008 namespace edm4hep {
0009 
0010 
0011 /** @class RawTimeSeriesData
0012  *  Raw data of a detector readout
0013  *  @author: EDM4hep authors
0014  */
0015 class RawTimeSeriesData {
0016 public:
0017   std::uint64_t cellID{}; ///< detector specific cell id
0018   std::int32_t quality{}; ///< quality flag for the hit
0019   float time{}; ///< time of the hit [ns]
0020   float charge{}; ///< integrated charge of the hit [fC]
0021   float interval{}; ///< interval of each sampling [ns]
0022 
0023   unsigned int adcCounts_begin{};
0024   unsigned int adcCounts_end{};
0025 };
0026 
0027 } // namespace edm4hep
0028 
0029 
0030 #endif