Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#ifndef CTP7Format_hh
#define CTP7Format_hh
#include <cstdint>
class CTP7Format {
public:
  CTP7Format() : EVENT_HEADER_WORDS(6), CHANNEL_HEADER_WORDS(2), CHANNEL_DATA_WORDS_PER_BX(6), NLINKS(36) {}

  const uint32_t EVENT_HEADER_WORDS;
  const uint32_t CHANNEL_HEADER_WORDS;
  const uint32_t CHANNEL_DATA_WORDS_PER_BX;
  //const uint32_t NIntsBRAMDAQ;
  const uint32_t NLINKS;

private:
};

#endif