mirror of
https://github.com/sesps/SPS_SABRE_EventBuilder.git
synced 2025-04-21 22:58:50 -04:00
20 lines
287 B
C++
20 lines
287 B
C++
#ifndef COMPASS_HIT_H
|
|
#define COMPASS_HIT_H
|
|
|
|
namespace EventBuilder {
|
|
|
|
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;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|