SPS_SABRE_EventBuilder/include/CompassHit.h

16 lines
238 B
C
Raw Normal View History

2021-07-13 16:36:41 -04:00
#ifndef COMPASS_HIT_H
#define COMPASS_HIT_H
struct CompassHit
{
uint16_t board = 400;
uint16_t channel = 400;
uint64_t timestamp = 0;
uint16_t lgate = 0;
uint16_t sgate = 0;
uint32_t flags = 0;
uint32_t Ns = 0;
2021-07-13 16:36:41 -04:00
};
#endif