1 |
//This is the list and types of the variables saved in the TTree;
|
2 |
//New variables must be declared here
|
3 |
|
4 |
//event variables
|
5 |
int runnumber;
|
6 |
int lumiblock;
|
7 |
int eventNumber;
|
8 |
float timestamp;
|
9 |
int bunchXing;
|
10 |
int orbitNum;
|
11 |
|
12 |
//primary vertex
|
13 |
float PV_x;
|
14 |
float PV_y;
|
15 |
float PV_z;
|
16 |
|
17 |
float PV_xxE;
|
18 |
float PV_yyE;
|
19 |
float PV_zzE;
|
20 |
float PV_xyE;
|
21 |
float PV_xzE;
|
22 |
float PV_yzE;
|
23 |
|
24 |
float PV_normchi2;
|
25 |
|
26 |
//HLT
|
27 |
int triggerWord;
|
28 |
|
29 |
//digi variables
|
30 |
std::vector<short> digi_wheel;
|
31 |
std::vector<short> digi_sector;
|
32 |
std::vector<short> digi_station;
|
33 |
std::vector<short> digi_sl;
|
34 |
std::vector<short> digi_layer;
|
35 |
std::vector<short> digi_wire;
|
36 |
std::vector<float> digi_time;
|
37 |
|
38 |
//DT segment variables
|
39 |
std::vector<short> segm4D_wheel;
|
40 |
std::vector<short> segm4D_sector;
|
41 |
std::vector<short> segm4D_station;
|
42 |
|
43 |
std::vector<short> segm4D_hasPhi;
|
44 |
std::vector<short> segm4D_hasZed;
|
45 |
|
46 |
std::vector<float> segm4D_x_loc;
|
47 |
std::vector<float> segm4D_y_loc;
|
48 |
std::vector<float> segm4D_phi_loc;
|
49 |
std::vector<float> segm4D_theta_loc;
|
50 |
std::vector<float> segm4D_eta_loc;
|
51 |
|
52 |
std::vector<float> segm4D_x;
|
53 |
std::vector<float> segm4D_y;
|
54 |
std::vector<float> segm4D_phi;
|
55 |
std::vector<float> segm4D_theta;
|
56 |
std::vector<float> segm4D_eta;
|
57 |
|
58 |
std::vector<float> segm4D_t0;
|
59 |
std::vector<float> segm4D_phinormchi2;
|
60 |
std::vector<short> segm4D_phinhits;
|
61 |
|
62 |
std::vector<float> segm4D_znormchi2;
|
63 |
std::vector<short> segm4D_znhits;
|
64 |
|
65 |
TClonesArray *segm4D_phiHits_Pos;
|
66 |
TClonesArray *segm4D_phiHits_PosErr;
|
67 |
TClonesArray *segm4D_phiHits_Side;
|
68 |
|
69 |
TClonesArray *segm4D_zHits_Pos;
|
70 |
TClonesArray *segm4D_zHits_PosErr;
|
71 |
TClonesArray *segm4D_zHits_Side;
|
72 |
|
73 |
//CSC segment variables
|
74 |
std::vector<short> cscsegm_ring;
|
75 |
std::vector<short> cscsegm_chamber;
|
76 |
std::vector<short> cscsegm_station;
|
77 |
std::vector<float> cscsegm_x;
|
78 |
std::vector<float> cscsegm_y;
|
79 |
std::vector<float> cscsegm_phi;
|
80 |
std::vector<float> cscsegm_eta;
|
81 |
std::vector<float> cscsegm_normchi2;
|
82 |
std::vector<short> cscsegm_nRecHits;
|
83 |
|
84 |
//DCC variables
|
85 |
std::vector<short> ltDCC_wheel;
|
86 |
std::vector<short> ltDCC_sector;
|
87 |
std::vector<short> ltDCC_station;
|
88 |
std::vector<short> ltDCC_quality;
|
89 |
std::vector<short> ltDCC_bx;
|
90 |
std::vector<float> ltDCC_phi;
|
91 |
std::vector<float> ltDCC_phiB;
|
92 |
std::vector<short> ltDCC_is2nd;
|
93 |
|
94 |
//DDU variables
|
95 |
std::vector<short> ltDDU_wheel;
|
96 |
std::vector<short> ltDDU_sector;
|
97 |
std::vector<short> ltDDU_station;
|
98 |
std::vector<short> ltDDU_bx;
|
99 |
std::vector<short> ltDDU_phiQual;
|
100 |
std::vector<short> ltDDU_thQual;
|
101 |
std::vector<short> ltDDU_is2nd;
|
102 |
|
103 |
//muon variables
|
104 |
std::vector<short> STAMu_isMuGlobal;
|
105 |
std::vector<int> STAMu_numberOfChambers;
|
106 |
std::vector<int> STAMu_numberOfMatches;
|
107 |
std::vector<int> STAMu_numberOfHits;
|
108 |
std::vector<short> STAMu_segmIndex;
|
109 |
|
110 |
std::vector<float> Mu_px_mu;
|
111 |
std::vector<float> Mu_py_mu;
|
112 |
std::vector<float> Mu_pz_mu;
|
113 |
std::vector<float> Mu_phi_mu;
|
114 |
std::vector<float> Mu_eta_mu;
|
115 |
std::vector<short> STAMu_recHitsSize;
|
116 |
std::vector<float> STAMu_normchi2Mu;
|
117 |
std::vector<short> STAMu_chargeMu;
|
118 |
std::vector<float> STAMu_dxyMu;
|
119 |
std::vector<float> STAMu_dzMu;
|
120 |
|
121 |
std::vector<float> GLBMu_normchi2Mu;
|
122 |
std::vector<float> GLBMu_dxyMu;
|
123 |
std::vector<float> GLBMu_dzMu;
|
124 |
|
125 |
std::vector<float> GLBMu_tkIsoR03;
|
126 |
std::vector<float> GLBMu_ntkIsoR03;
|
127 |
std::vector<float> GLBMu_emIsoR03;
|
128 |
std::vector<float> GLBMu_hadIsoR03;
|
129 |
|
130 |
std::vector<float> STAMu_caloCompatibility;
|
131 |
|
132 |
std::vector<float> STAMu_z_mb2;
|
133 |
std::vector<float> STAMu_phi_mb2;
|
134 |
std::vector<float> STAMu_pseta_mb2;
|
135 |
|
136 |
//GMT
|
137 |
std::vector<short> gmt_bx;
|
138 |
std::vector<float> gmt_phi;
|
139 |
std::vector<float> gmt_eta;
|
140 |
std::vector<float> gmt_pt;
|
141 |
std::vector<short> gmt_qual;
|
142 |
std::vector<short> gmt_detector;
|
143 |
|
144 |
std::vector<short> gmt_cands_fwd;
|
145 |
std::vector<short> gmt_cands_isRpc;
|
146 |
std::vector<short> gmt_cands_bx;
|
147 |
std::vector<float> gmt_cands_phi;
|
148 |
std::vector<float> gmt_cands_eta;
|
149 |
std::vector<float> gmt_cands_pt;
|
150 |
std::vector<short> gmt_cands_qual;
|
151 |
std::vector<short> gmt_cands_ismatched;
|