Class Reference for E1039 Core & Analysis Software
DecoParam.h
Go to the documentation of this file.
1 #ifndef __DECO_PARAM_H__
2 #define __DECO_PARAM_H__
6 //#include "assert.h"
7 class EventInfo;
8 
14 struct DecoParam {
18  std::string fn_in;
19  std::string dir_param;
20  bool is_online;
21  int sampling;
22  int verb;
23  int time_wait;
24 
28 
32  unsigned short int runID;
33 
34  int spillID;
35  int spillID_cntr; // spillID from spill-counter event
36  int spillID_slow; // spillID from slow-control event
37  short targPos;
38  short targPos_slow; // from slow-control event
39 
40  unsigned int event_count;
41  int codaID;
42  short spillType;
43  short rocID;
44  int eventIDstd;
45  long int hitID;
46 
47  bool has_1st_bos;
48  bool at_bos;
49 
51  unsigned int turn_id_max;
52 
53  // Benchmarking Values
54  time_t timeStart, timeEnd;
55 
56  DecoParam();
57  ~DecoParam() {;}
58  int InitMapper();
59 };
60 
61 #endif // __DECO_PARAM_H__
unsigned short int runID
Definition: DecoParam.h:32
bool has_1st_bos
Set 'true' at the 1st BOS event.
Definition: DecoParam.h:47
int spillID_slow
Definition: DecoParam.h:36
int codaID
current Coda event ID
Definition: DecoParam.h:41
int time_wait
waiting time in second to pretend the online data flow.
Definition: DecoParam.h:23
long int hitID
current hit ID, commonly used by Hit and TriggerHit.
Definition: DecoParam.h:45
int InitMapper()
Definition: DecoParam.cc:32
int spillID_cntr
Definition: DecoParam.h:35
bool at_bos
Set 'true' at BOS, which triggers parsing the data in one spill.
Definition: DecoParam.h:48
bool is_online
Definition: DecoParam.h:20
DecoParam()
Definition: DecoParam.cc:7
int spillID
Definition: DecoParam.h:34
time_t timeEnd
Definition: DecoParam.h:54
ChanMapV1495 chan_map_v1495
Definition: DecoParam.h:26
short targPos_slow
Definition: DecoParam.h:38
short spillType
current spill type
Definition: DecoParam.h:42
short rocID
current ROC ID
Definition: DecoParam.h:43
~DecoParam()
Definition: DecoParam.h:57
short targPos
Definition: DecoParam.h:37
time_t timeStart
Definition: DecoParam.h:54
std::string fn_in
Definition: DecoParam.h:18
ChanMapTaiwan chan_map_taiwan
Definition: DecoParam.h:25
int verb
Verbosity. 0 = error, 1 = warning, 2 = info, 3 = debug, 4 = insane.
Definition: DecoParam.h:22
std::string dir_param
Definition: DecoParam.h:19
ChanMapScaler chan_map_scaler
Definition: DecoParam.h:27
int sampling
Definition: DecoParam.h:21
unsigned int event_count
current event count
Definition: DecoParam.h:40
int eventIDstd
current event ID of standard physics events
Definition: DecoParam.h:44
unsigned int turn_id_max
Max turnOnset in a spill. Used to drop NIM3 events that came after the beam stops....
Definition: DecoParam.h:51