Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-11 10:20:45

0001 // AUTOMATICALLY GENERATED FILE - DO NOT EDIT
0002 
0003 #ifndef JANA2_TUTORIAL_PODIO_DATAMODEL_ADCHitDATA_H
0004 #define JANA2_TUTORIAL_PODIO_DATAMODEL_ADCHitDATA_H
0005 
0006 #include <cstdint>
0007 
0008 
0009 
0010 /** @class ADCHitData
0011  *  The raw hit read off the DAQ, or produced by digitization
0012  *  @author: N. Brei
0013  */
0014 class ADCHitData {
0015 public:
0016   std::uint32_t crate{}; ///< DAQ crate index
0017   std::uint32_t slot{}; ///< DAQ slot index
0018   std::uint32_t channel{}; ///< DAQ channel index
0019   std::uint32_t energy{}; ///< Energy measured
0020   std::uint32_t timestamp{}; ///< Timestamp [ns]
0021 
0022 };
0023 
0024 
0025 namespace v1 {
0026 using ADCHitData = ADCHitData;
0027 } // namespace v1
0028 
0029 
0030 
0031 
0032 #endif