mirror of
https://github.com/sesps/SPS_SABRE_EventBuilder.git
synced 2024-11-23 02:28:50 -05:00
15 lines
234 B
C
15 lines
234 B
C
|
#ifndef COMPASS_HIT_H
|
||
|
#define COMPASS_HIT_H
|
||
|
|
||
|
struct CompassHit {
|
||
|
UShort_t board = 400;
|
||
|
UShort_t channel = 400;
|
||
|
ULong64_t timestamp = 0;
|
||
|
UShort_t lgate = 0;
|
||
|
UShort_t sgate = 0;
|
||
|
UInt_t flags = 0;
|
||
|
UInt_t Ns = 0;
|
||
|
};
|
||
|
|
||
|
#endif
|