SPS_SABRE_EventBuilder/src/evb/CompassHit.h

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