Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-07-05 08:52:36

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 /** @class RawTimeSeriesData
0011  *  Raw data of a detector readout
0012  *  @author: EDM4hep authors
0013  */
0014 class RawTimeSeriesData {
0015 public:
0016   std::uint64_t cellID{}; ///< detector specific cell id
0017   std::int32_t quality{}; ///< quality flag for the hit
0018   float time{};           ///< time of the hit [ns]
0019   float charge{};         ///< integrated charge of the hit [fC]
0020   float interval{};       ///< interval of each sampling [ns]
0021 
0022   unsigned int adcCounts_begin{};
0023   unsigned int adcCounts_end{};
0024 };
0025 
0026 } // namespace edm4hep
0027 
0028 #endif