mirror of
https://github.com/sesps/SPS_SABRE_EventBuilder.git
synced 2024-11-12 13:28:52 -05:00
18 lines
258 B
C++
18 lines
258 B
C++
#ifndef COMPASS_HIT_H
|
|
#define COMPASS_HIT_H
|
|
|
|
#include <cstdint>
|
|
|
|
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
|