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  , fpga_bits(0)
9  , nim_bits (0)
10  , D1 (0)
11  , D2 (0)
12  , D3p (0)
13  , D3m (0)
14 {
15  ;
16 }
17 
19  : road_pos(0)
20  , road_neg(0)
21  , pos_top(false)
22  , pos_bot(false)
23  , neg_top(false)
24  , neg_bot(false)
25  , pos(0,0,0)
26  , mom(0,0,0,0)
27  , n_hits_pos(0)
28  , chisq_pos (0)
29  , chisq_target_pos (0)
30  , chisq_dump_pos (0)
31  , chisq_upstream_pos(0)
32  , pos_pos (0,0,0)
33  , mom_pos (0,0,0,0)
34  , pos_target_pos(0,0,0)
35  , pos_dump_pos (0,0,0)
36  , n_hits_neg(0)
37  , chisq_neg (0)
38  , chisq_target_neg (0)
39  , chisq_dump_neg (0)
40  , chisq_upstream_neg(0)
41  , pos_neg (0,0,0)
42  , mom_neg (0,0,0,0)
43  , pos_target_neg(0,0,0)
44  , pos_dump_neg (0,0,0)
45  , mom_target(0,0,0,0)
46  , mom_dump (0,0,0,0)
47 {
48  ;
49 }
50 
52  : charge(0)
53  , road (0)
54  , n_hits(0)
55  , chisq (0)
56  , chisq_target (0)
57  , chisq_dump (0)
58  , chisq_upstream(0)
59  , pos_vtx(0,0,0)
60  , mom_vtx(0,0,0,0)
61  , pos_st1(0,0,0)
62  , mom_st1(0,0,0,0)
63  , pos_st3(0,0,0)
64  , mom_st3(0,0,0,0)
65 {
66  ;
67 }
DimuonData()
Definition: TreeData.cc:24
TrackData()
Definition: TreeData.cc:18