Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-15 10:12:07

0001 // AUTOMATICALLY GENERATED FILE - DO NOT EDIT
0002 
0003 #ifndef EDM4EIC_RawHGCROCHitDATA_H
0004 #define EDM4EIC_RawHGCROCHitDATA_H
0005 
0006 #include <cstdint>
0007 
0008 namespace edm4eic {
0009 
0010 
0011 /** @class RawHGCROCHitData
0012  *  Raw hit from an HGCROC chip
0013  *  @author: D. Anderson, S. Joosten, T. Protzman, N. Novitzky, D. Kalinkin
0014  */
0015 class RawHGCROCHitData {
0016 public:
0017   std::uint64_t cellID{}; ///< Detector specific (geometrical) cell id
0018   std::int32_t samplePhase{}; ///< Phase of samples in [# samples], for synchronizing across chips
0019   std::int32_t timeStamp{}; ///< [TDC counts]
0020 
0021   unsigned int samples_begin{};
0022   unsigned int samples_end{};
0023 };
0024 
0025 
0026 namespace v850 {
0027 using RawHGCROCHitData = edm4eic::RawHGCROCHitData;
0028 } // namespace v850
0029 
0030 
0031 } // namespace edm4eic
0032 
0033 
0034 #endif