Class Reference for E1039 Core & Analysis Software
DecoData.h
Go to the documentation of this file.
1 #ifndef __DECO_DATA_H__
2 #define __DECO_DATA_H__
3 #include <stdio.h>
4 #include <iostream>
5 #include <string.h>
6 #include <string>
7 #include <vector>
8 #include <map>
9 #include <algorithm>
10 #include <TObject.h>
11 
12 /* ================================================================
13  DecoData
14  |
15  +- RunData
16  | +- FeeData
17  | +- Other run variables
18  |
19  |
20  +- map<spill ID, SpillData> = SpillDataMap
21  | +- BOS & EOS spill variables
22  | +- vector<SlowControlData>
23  | +- vector<ScalerData>
24  |
25  |
26  +- map<event ID, EventData> = EventDataMap
27  | +- EventInfo
28  | | +- Trigger & QIE variables
29  | +- vector<HitData> for Taiwan-TDC hits
30  | +- vector<HitData> for v1495-TDC hits
31  | Note: The contents of HitData are useful for now
32  | since SRawEvent cannot hold roc/board/tdc IDs.
33  O
34 
35  Timeline of Coda events
36  |
37  +- BOS
38  |
39  +- EOS
40  | <- Flush events
41  +- Spill Counter <- Flush events
42  | <- Flush events
43  +- Slow Control <- Flush events
44  | <- Flush events
45  + (Next BOS)
46 
47 ================================================================ */
48 
50 //
51 // Run Data
52 //
53 
54 struct FeeData : public TObject {
55  unsigned int roc;
56  unsigned int board;
57  unsigned int hard; // TDCHardID
58  unsigned int falling_enabled;
59  unsigned int segmentation;
60  unsigned int multihit_elim_enabled;
61  unsigned int updating_enabled;
62  unsigned int elim_window;
63  unsigned int lowLimit;
64  unsigned int highLimit;
65  unsigned int selectWindow;
66 
67  FeeData();
68  virtual ~FeeData() {;}
69 };
70 typedef std::vector<FeeData> FeeDataList;
71 
72 struct RunData : public TObject {
73  int run_id;
74  int utime_b;
75  int utime_e; // not implemented
76 
77  int fpga_enabled [5];
78  int nim_enabled [5];
79  int fpga_prescale[5];
80  int nim_prescale[3];
81 
82  int trig_bit[10];
83  int prescale[ 8];
84  int v1495_id[10];
86  std::string run_desc;
87 
91  int n_spill;
92  int n_evt_all; //< N of all real (i.e. triggered) events
93  int n_evt_dec; //< N of decoded real events
94  int n_phys_evt; //< N of Coda physics events
96  int n_flush_evt; //< N of Coda flush events
98  int n_hit; //< N of Taiwan-TDC hits
99  int n_t_hit; //< N of v1495-TDC hits
100  int n_hit_bad; //< N of bad hits
101  int n_t_hit_bad; //< N of bad t-hits. Not implemented
102  int n_v1495; //< N of v1495 events
106 
107  RunData();
108  virtual ~RunData() {;}
109 };
110 
112 //
113 // Spill Data
114 //
115 
117  std::string ts;
118  std::string name;
119  std::string value;
120  std::string type;
121 
122  SlowControlData();
123  virtual ~SlowControlData() {;}
124 };
125 typedef std::vector<SlowControlData> SlowControlDataList;
126 
127 struct ScalerData {
128  short type ;
129  int coda ;
130  short roc ;
131  short board;
132  short chan ;
133  int value;
134  std::string name;
135 
136  ScalerData();
137  virtual ~ScalerData() {;}
138 };
139 typedef std::vector<ScalerData> ScalerDataList;
140 
141 struct SpillData {
142  unsigned int spill_id; //< spill ID in Spill Counter
143  unsigned int spill_id_slow; //< spill ID in slow control
144  unsigned int run_id;
145  unsigned int targ_pos;
146  unsigned int bos_coda_id;
147  unsigned int bos_vme_time;
148  unsigned int eos_coda_id;
149  unsigned int eos_vme_time;
150 
151  unsigned int n_bos_spill;
152  unsigned int n_eos_spill;
153  unsigned int n_slow;
154  unsigned int n_scaler;
155 
156  double time_input;
157  double time_decode;
158  double time_map;
159 
162 
163  SpillData();
164  virtual ~SpillData() {;}
165 };
166 typedef std::map<unsigned int, SpillData> SpillDataMap;
167 
169 //
170 // Event-by-event data
171 //
172 struct HitData {
173  int event;
174  int id;
175  short roc;
176  int board;
177  short chan;
178  short det;
179  short ele;
180  short lvl;
181  double time;
182  HitData();
183  virtual ~HitData() {;}
184 };
185 typedef std::vector<HitData> HitDataList;
186 
187 struct EventInfo {
188  int eventID;
190  int runID;
191  int spillID;
193  int vmeTime;
194  int RawMATRIX[5];
196  int NIM[5];
197  int MATRIX[5];
199  unsigned int sums[4];
200  unsigned int triggerCount;
201  unsigned int turnOnset;
202  unsigned int rfOnset;
203  unsigned int rf[33];
204  short flag_v1495;
205 
206  EventInfo();
208 };
209 
210 struct EventData {
211  unsigned int n_qie;
212  unsigned int n_v1495;
213  unsigned int n_tdc;
214  unsigned int n_trig_b;
215  unsigned int n_trig_c;
216 
220 
221  EventData();
223 };
224 typedef std::map<unsigned int, EventData> EventDataMap;
225 
226 #endif // __DECO_DATA_H__
std::vector< HitData > HitDataList
Definition: DecoData.h:185
std::map< unsigned int, EventData > EventDataMap
Definition: DecoData.h:224
std::vector< ScalerData > ScalerDataList
Definition: DecoData.h:139
std::map< unsigned int, SpillData > SpillDataMap
Definition: DecoData.h:166
std::vector< FeeData > FeeDataList
Definition: DecoData.h:70
std::vector< SlowControlData > SlowControlDataList
Definition: DecoData.h:125
unsigned int n_tdc
Definition: DecoData.h:213
HitDataList list_hit
Definition: DecoData.h:218
~EventData()
Definition: DecoData.h:222
unsigned int n_qie
Definition: DecoData.h:211
EventInfo event
Definition: DecoData.h:217
unsigned int n_trig_c
Definition: DecoData.h:215
unsigned int n_v1495
Definition: DecoData.h:212
unsigned int n_trig_b
Definition: DecoData.h:214
HitDataList list_hit_trig
Definition: DecoData.h:219
int RawMATRIX[5]
Definition: DecoData.h:194
int runID
Definition: DecoData.h:190
unsigned int rf[33]
Definition: DecoData.h:203
int vmeTime
Definition: DecoData.h:193
unsigned int rfOnset
Definition: DecoData.h:202
int eventID
Definition: DecoData.h:188
unsigned int sums[4]
Definition: DecoData.h:199
~EventInfo()
Definition: DecoData.h:207
int MATRIX[5]
Definition: DecoData.h:197
unsigned int triggerCount
Definition: DecoData.h:200
unsigned int turnOnset
Definition: DecoData.h:201
int codaEventID
Definition: DecoData.h:189
short flag_v1495
Definition: DecoData.h:204
int AfterInhMATRIX[5]
Definition: DecoData.h:195
int trigger_bits
Definition: DecoData.h:198
int dataQuality
Definition: DecoData.h:192
int spillID
Definition: DecoData.h:191
int NIM[5]
Definition: DecoData.h:196
EventInfo()
Definition: DecoData.cc:89
unsigned int lowLimit
Definition: DecoData.h:63
unsigned int roc
Definition: DecoData.h:55
virtual ~FeeData()
Definition: DecoData.h:68
unsigned int board
Definition: DecoData.h:56
unsigned int updating_enabled
Definition: DecoData.h:61
unsigned int segmentation
Definition: DecoData.h:59
unsigned int falling_enabled
Definition: DecoData.h:58
unsigned int highLimit
Definition: DecoData.h:64
unsigned int hard
Definition: DecoData.h:57
unsigned int elim_window
Definition: DecoData.h:62
unsigned int selectWindow
Definition: DecoData.h:65
unsigned int multihit_elim_enabled
Definition: DecoData.h:60
FeeData()
Definition: DecoData.cc:14
HitData()
Definition: DecoData.cc:83
short roc
Definition: DecoData.h:175
virtual ~HitData()
Definition: DecoData.h:183
double time
Definition: DecoData.h:181
int id
Definition: DecoData.h:174
short chan
Definition: DecoData.h:177
int board
Definition: DecoData.h:176
int event
Definition: DecoData.h:173
short ele
Definition: DecoData.h:179
short lvl
Definition: DecoData.h:180
short det
Definition: DecoData.h:178
int utime_b
Definition: DecoData.h:74
int v1495_id[10]
Definition: DecoData.h:84
int n_v1495
Definition: DecoData.h:102
int prescale[8]
Definition: DecoData.h:83
int run_id
Definition: DecoData.h:73
int n_fee_prescale
Definition: DecoData.h:89
virtual ~RunData()
Definition: DecoData.h:108
int n_t_hit
Definition: DecoData.h:99
int n_phys_evt
Definition: DecoData.h:94
int trig_bit[10]
Definition: DecoData.h:82
int n_phys_evt_bad
Definition: DecoData.h:95
int n_hit_bad
Definition: DecoData.h:100
int n_hit
Definition: DecoData.h:98
FeeDataList fee
Definition: DecoData.h:85
int n_spill
Definition: DecoData.h:91
int fpga_enabled[5]
Definition: DecoData.h:77
RunData()
Definition: DecoData.cc:22
int n_evt_dec
Definition: DecoData.h:93
int n_v1495_d3ad
Definition: DecoData.h:105
int n_t_hit_bad
Definition: DecoData.h:101
int n_flush_evt_bad
Definition: DecoData.h:97
int n_v1495_d2ad
Definition: DecoData.h:104
int utime_e
Definition: DecoData.h:75
int n_flush_evt
Definition: DecoData.h:96
int n_fee_event
Definition: DecoData.h:88
int n_v1495_d1ad
Definition: DecoData.h:103
int n_run_desc
Definition: DecoData.h:90
int nim_enabled[5]
Definition: DecoData.h:78
int nim_prescale[3]
Definition: DecoData.h:80
int fpga_prescale[5]
Definition: DecoData.h:79
int n_evt_all
Definition: DecoData.h:92
std::string run_desc
Definition: DecoData.h:86
short type
Definition: DecoData.h:128
std::string name
Definition: DecoData.h:134
short chan
Definition: DecoData.h:132
virtual ~ScalerData()
Definition: DecoData.h:137
ScalerData()
Definition: DecoData.cc:52
int coda
Definition: DecoData.h:129
short board
Definition: DecoData.h:131
int value
Definition: DecoData.h:133
short roc
Definition: DecoData.h:130
std::string name
Definition: DecoData.h:118
std::string type
Definition: DecoData.h:120
virtual ~SlowControlData()
Definition: DecoData.h:123
std::string ts
Definition: DecoData.h:117
std::string value
Definition: DecoData.h:119
double time_input
In msec.
Definition: DecoData.h:156
unsigned int eos_vme_time
Definition: DecoData.h:149
ScalerDataList list_scaler
Definition: DecoData.h:161
virtual ~SpillData()
Definition: DecoData.h:164
unsigned int bos_coda_id
Definition: DecoData.h:146
unsigned int spill_id_slow
Definition: DecoData.h:143
unsigned int n_bos_spill
Definition: DecoData.h:151
unsigned int run_id
Definition: DecoData.h:144
unsigned int n_scaler
Definition: DecoData.h:154
unsigned int spill_id
Definition: DecoData.h:142
unsigned int n_eos_spill
Definition: DecoData.h:152
SpillData()
Definition: DecoData.cc:58
double time_map
In msec.
Definition: DecoData.h:158
unsigned int eos_coda_id
Definition: DecoData.h:148
double time_decode
In msec.
Definition: DecoData.h:157
unsigned int bos_vme_time
Definition: DecoData.h:147
unsigned int n_slow
Definition: DecoData.h:153
unsigned int targ_pos
Definition: DecoData.h:145
SlowControlDataList list_slow_cont
Definition: DecoData.h:160