Class Reference for E1039 Core & Analysis Software
TreeData.cc
Go to the documentation of this file.
1 #include "TreeData.h"
2 using namespace std;
3 
5  : run_id(0)
6  , spill_id(0)
7  , event_id(0)
8  , fpga1(false)
9  , fpga2(false)
10  , fpga3(false)
11  , nim3 (false)
12  , rec_status(0)
13 {
14  ;
15 }
16 
18  : charge(0)
19 {
20  ;
21 }
22 
24  : pT(0)
25  , x1(0)
26  , x2(0)
27  , xF(0)
28  , costh(0)
29  , phi(0)
30 {
31  ;
32 }
33 
35 {
37  fpga1 = fpga2 = fpga3 = nim3 = 0;
38  turn_id = rf_id = rfp00 = 0;
39  memset(occ_all , 0, sizeof(occ_all ));
40  memset(occ_intime, 0, sizeof(occ_intime));
41 }
42 
DimuonData()
Definition: TreeData.cc:24
int spill_id
Definition: TreeData.h:61
int turn_id
Definition: TreeData.h:68
int event_id
Definition: TreeData.h:62
short occ_intime[N_PL+1]
Definition: TreeData.h:72
short target_pos
Definition: TreeData.h:63
bool fpga1
Definition: TreeData.h:64
bool fpga3
Definition: TreeData.h:66
bool nim3
Definition: TreeData.h:67
int rf_id
Definition: TreeData.h:69
short occ_all[N_PL+1]
Definition: TreeData.h:71
int rfp00
Definition: TreeData.h:70
bool fpga2
Definition: TreeData.h:65
void Clear()
Definition: TreeData.cc:34
int run_id
Definition: TreeData.h:60
TrackData()
Definition: TreeData.cc:18