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