mirror of
https://github.com/sesps/SPS_SABRE_EventBuilder.git
synced 2025-07-04 04:58:49 -04:00
22 lines
334 B
C++
22 lines
334 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 energy = 0;
|
|
uint64_t energyCalibrated = 0;
|
|
uint16_t energyShort = 0;
|
|
uint32_t flags = 0;
|
|
uint8_t waveCode = 0;
|
|
uint32_t Ns = 0;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|