All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SRTrigger.h
Go to the documentation of this file.
1 #ifndef SRTRIGGER_h
2 #define SRTRIGGER_h
3 
4 #include <cstdlib>
5 
6 namespace caf
7 {
8  class SRTrigger
9  {
10  public:
11  SRTrigger();
12  u_int64_t global_trigger_time; ///< Time of trigger in UTC [ns]
13  u_int64_t beam_gate_time_abs; ///< Time of beam gate opening in UTC [ns]
14  int64_t trigger_within_gate; ///< Time from beam gate to the trigger [ns]
15  double beam_gate_det_time; ///< Beam gate time on detector time scale [us]
16  double global_trigger_det_time; ///< Trigger time on detector time scale [us]
17 
18  };
19 }
20 
21 #endif
int64_t trigger_within_gate
Time from beam gate to the trigger [ns].
Definition: SRTrigger.h:14
u_int64_t beam_gate_time_abs
Time of beam gate opening in UTC [ns].
Definition: SRTrigger.h:13
u_int64_t global_trigger_time
Time of trigger in UTC [ns].
Definition: SRTrigger.h:12
double beam_gate_det_time
Beam gate time on detector time scale [us].
Definition: SRTrigger.h:15
double global_trigger_det_time
Trigger time on detector time scale [us].
Definition: SRTrigger.h:16