Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/edm4hep/TimeSeriesData.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 // AUTOMATICALLY GENERATED FILE - DO NOT EDIT
0002 
0003 #ifndef EDM4HEP_TimeSeriesDATA_H
0004 #define EDM4HEP_TimeSeriesDATA_H
0005 
0006 #include <cstdint>
0007 
0008 namespace edm4hep {
0009 
0010 /** @class TimeSeriesData
0011  *  Calibrated Detector Data
0012  *  @author: EDM4hep authors
0013  */
0014 class TimeSeriesData {
0015 public:
0016   std::uint64_t cellID{}; ///< cell id
0017   float time{};           ///< begin time [ns]
0018   float interval{};       ///< interval of each sampling [ns]
0019 
0020   unsigned int amplitude_begin{};
0021   unsigned int amplitude_end{};
0022 };
0023 
0024 namespace v5 {
0025   using TimeSeriesData = edm4hep::TimeSeriesData;
0026 } // namespace v5
0027 
0028 } // namespace edm4hep
0029 
0030 #endif