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  : proc_id(0)
6  , weight(1.0)
7  , nim1 (false)
8  , fpga1(false)
9  , trig_bits(0)
10  , rec_stat(0)
11  , n_dim_true(0)
12  , n_dim_reco(0)
13 {
14  for (int ii = 0; ii < 4; ii++) {
15  par_id [ii] = 0;
16  par_mom[ii].SetXYZT(0, 0, 0, 0);
17  }
18 }
19 
21  : charge(0)
22 {
23  ;
24 }
25 
27  : pdg_id(0)
28  , mass(0)
29  , pT(0)
30  , x1(0)
31  , x2(0)
32  , xF(0)
33  , costh(0)
34  , phi_s(0)
35  , phi_s_up(0)
36 {
37  ;
38 }
DimuonData()
Definition: TreeData.cc:24
TrackData()
Definition: TreeData.cc:18