Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:10:57

0001 #ifndef CTP7Format_hh
0002 #define CTP7Format_hh
0003 #include <cstdint>
0004 class CTP7Format {
0005 public:
0006   CTP7Format() : EVENT_HEADER_WORDS(6), CHANNEL_HEADER_WORDS(2), CHANNEL_DATA_WORDS_PER_BX(6), NLINKS(36) {}
0007 
0008   const uint32_t EVENT_HEADER_WORDS;
0009   const uint32_t CHANNEL_HEADER_WORDS;
0010   const uint32_t CHANNEL_DATA_WORDS_PER_BX;
0011   //const uint32_t NIntsBRAMDAQ;
0012   const uint32_t NLINKS;
0013 
0014 private:
0015 };
0016 
0017 #endif