DUNE StandardRecord
Base object for DUNE analysis files (CAFs)
Loading...
Searching...
No Matches
SRMeta.h
Go to the documentation of this file.
1
5
6#ifndef DUNEANAOBJ_SRMETA_H
7#define DUNEANAOBJ_SRMETA_H
8
9#include <limits>
10
11#include "duneanaobj/StandardRecord/SREnums.h"
12
13namespace caf
14{
15
17 {
18 public:
19 bool enabled = false;
20
21 int run = -1;
22 int subrun = -1;
23 int event = -1;
24 int subevt = -1;
25
27 int triggertype = -1;
28
29 bool triggered = true;
30
31 unsigned long int readoutstart_s = 0;
32 unsigned int readoutstart_ns = 0;
33 unsigned long int readoutend_s = 0;
34 unsigned int readoutend_ns = 0;
35
39 double prism_offset = std::numeric_limits<double>::signaling_NaN();
40
41 };
42
43} // caf
44
45#endif //DUNEANAOBJ_SRMETA_H
Definition SRMeta.h:17
unsigned long int readoutstart_s
GPS time of trigger readout start, seconds part.
Definition SRMeta.h:31
unsigned int readoutend_ns
GPS time of trigger readout end, nanoseconds part.
Definition SRMeta.h:34
double prism_offset
Definition SRMeta.h:39
unsigned int readoutstart_ns
GPS time of trigger readout start, nanoseconds part.
Definition SRMeta.h:32
bool enabled
Does this detector have data present in this event?
Definition SRMeta.h:19
int triggertype
detector-dependent trigger type for the relevant readout window
Definition SRMeta.h:27
bool triggered
Was the event triggered by this detector? (Useful in contexts where all simulated events are reconstr...
Definition SRMeta.h:29
unsigned long int readoutend_s
GPS time of trigger readout end, seconds part.
Definition SRMeta.h:33
Common Analysis Files.
Definition Navigate.cxx:8