Class Reference for E1039 Core & Analysis Software
DecoData.cc
Go to the documentation of this file.
1 #include "DecoData.h"
2 
3 //ClassImp(FeeData);
4 //ClassImp(RunData);
5 
6 //ClassImp(SlowControlData);
7 //ClassImp(ScalerData);
8 //ClassImp(SpillData);
9 
11 //
12 // Run Data
13 //
15  roc(0), board(0), hard(0), falling_enabled(0), segmentation(0),
16  multihit_elim_enabled(0), updating_enabled(0), elim_window(0),
17  lowLimit(0), highLimit(0), selectWindow(0)
18 {
19  ;
20 }
21 
23  run_id(0), utime_b(0), utime_e(0), run_desc(""),
24  n_fee_event(0), n_fee_prescale(0), n_run_desc(0),
25  n_spill(0), n_evt_all(0), n_evt_dec(0),
26  n_phys_evt(0), n_phys_evt_bad(0), n_flush_evt(0), n_flush_evt_bad(0),
27  n_hit(0), n_t_hit(0), n_hit_bad(0), n_t_hit_bad(0),
28  n_v1495(0), n_v1495_d1ad(0), n_v1495_d2ad(0), n_v1495_d3ad(0)
29 {
30  memset( fpga_enabled, 0, sizeof( fpga_enabled));
31  memset( nim_enabled, 0, sizeof( nim_enabled));
32  memset(fpga_prescale, 0, sizeof(fpga_prescale));
33  memset( nim_prescale, 0, sizeof( nim_prescale));
34 
35  memset(trig_bit, 0, sizeof(trig_bit));
36  memset(prescale, 0, sizeof(prescale));
37  memset(v1495_id, 0, sizeof(v1495_id));
38 }
39 
40 
42 //
43 // Spill Data
44 //
45 
47  ts(""), name(""), value(""), type("")
48 {
49  ;
50 }
51 
53  type(0), coda(0), roc(0), board(0), chan(0), value(0), name("")
54 {
55  ;
56 }
57 
59  : spill_id (0)
60  , spill_id_slow(0)
61  , run_id (0)
62  , targ_pos (0)
63  , bos_coda_id (0)
64  , bos_vme_time (0)
65  , eos_coda_id (0)
66  , eos_vme_time (0)
67  , n_bos_spill (0)
68  , n_eos_spill (0)
69  , n_slow (0)
70  , n_scaler (0)
71  , time_input (0)
72  , time_decode (0)
73  , time_map (0)
74 {
75  ;
76 }
77 
79 //
80 // Event Data
81 //
82 
84  event(0), id(0), roc(0), board(0), chan(0), det(0), ele(0), lvl(0), time(0)
85 {
86  ;
87 }
88 
90  eventID(0), codaEventID(0), runID(0), spillID(0),
91  dataQuality(0), vmeTime(0), trigger_bits(0),
92  triggerCount(0), turnOnset(0), rfOnset(0), flag_v1495(0)
93 {
94  memset(RawMATRIX , 0, sizeof(RawMATRIX ));
95  memset(AfterInhMATRIX, 0, sizeof(AfterInhMATRIX));
96  memset(NIM , 0, sizeof(NIM ));
97  memset(MATRIX , 0, sizeof(MATRIX ));
98  memset(sums , 0, sizeof(sums ));
99  memset(rf , 0, sizeof(rf ));
100 }
101 
103  n_qie(0), n_v1495(0), n_tdc(0), n_trig_b(0), n_trig_c(0)
104 {
105  ;
106 }
107 
int RawMATRIX[5]
Definition: DecoData.h:194
unsigned int rf[33]
Definition: DecoData.h:203
unsigned int sums[4]
Definition: DecoData.h:199
int MATRIX[5]
Definition: DecoData.h:197
int AfterInhMATRIX[5]
Definition: DecoData.h:195
int NIM[5]
Definition: DecoData.h:196
EventInfo()
Definition: DecoData.cc:89
FeeData()
Definition: DecoData.cc:14
HitData()
Definition: DecoData.cc:83
int v1495_id[10]
Definition: DecoData.h:84
int prescale[8]
Definition: DecoData.h:83
int trig_bit[10]
Definition: DecoData.h:82
int fpga_enabled[5]
Definition: DecoData.h:77
RunData()
Definition: DecoData.cc:22
int nim_enabled[5]
Definition: DecoData.h:78
int nim_prescale[3]
Definition: DecoData.h:80
int fpga_prescale[5]
Definition: DecoData.h:79
ScalerData()
Definition: DecoData.cc:52
SpillData()
Definition: DecoData.cc:58