1 |
//This is the list and types of the variables saved in the TTree;
|
2 |
//New variables must be declared here
|
3 |
|
4 |
#include "TString.h"
|
5 |
|
6 |
//event variables
|
7 |
int runnumber;
|
8 |
int lumiblock;
|
9 |
int eventNumber;
|
10 |
float timestamp;
|
11 |
int bunchXing;
|
12 |
int orbitNum;
|
13 |
|
14 |
//primary vertex
|
15 |
float PV_x;
|
16 |
float PV_y;
|
17 |
float PV_z;
|
18 |
|
19 |
float PV_xxE;
|
20 |
float PV_yyE;
|
21 |
float PV_zzE;
|
22 |
float PV_xyE;
|
23 |
float PV_xzE;
|
24 |
float PV_yzE;
|
25 |
|
26 |
float PV_normchi2;
|
27 |
float PV_Nvtx;
|
28 |
|
29 |
//luminosity
|
30 |
float lumiperblock;
|
31 |
float beam1Intensity;
|
32 |
float beam2Intensity;
|
33 |
|
34 |
// HLT
|
35 |
std::vector<TString> hlt_path;
|
36 |
|
37 |
//digi variables
|
38 |
std::vector<short> digi_wheel;
|
39 |
std::vector<short> digi_sector;
|
40 |
std::vector<short> digi_station;
|
41 |
std::vector<short> digi_sl;
|
42 |
std::vector<short> digi_layer;
|
43 |
std::vector<short> digi_wire;
|
44 |
std::vector<float> digi_time;
|
45 |
|
46 |
//DT segment variables
|
47 |
std::vector<short> segm4D_wheel;
|
48 |
std::vector<short> segm4D_sector;
|
49 |
std::vector<short> segm4D_station;
|
50 |
|
51 |
std::vector<short> segm4D_hasPhi;
|
52 |
std::vector<short> segm4D_hasZed;
|
53 |
|
54 |
std::vector<float> segm4D_x_pos_loc;
|
55 |
std::vector<float> segm4D_y_pos_loc;
|
56 |
std::vector<float> segm4D_z_pos_loc;
|
57 |
std::vector<float> segm4D_x_dir_loc;
|
58 |
std::vector<float> segm4D_y_dir_loc;
|
59 |
std::vector<float> segm4D_z_dir_loc;
|
60 |
|
61 |
std::vector<float> segm4D_cosx;
|
62 |
std::vector<float> segm4D_cosy;
|
63 |
std::vector<float> segm4D_cosz;
|
64 |
std::vector<float> segm4D_phi;
|
65 |
std::vector<float> segm4D_theta;
|
66 |
std::vector<float> segm4D_eta;
|
67 |
|
68 |
std::vector<float> segm4D_t0;
|
69 |
std::vector<float> segm4D_vdrift;
|
70 |
std::vector<float> segm4D_phinormchi2;
|
71 |
std::vector<short> segm4D_phinhits;
|
72 |
|
73 |
std::vector<float> segm4D_znormchi2;
|
74 |
std::vector<short> segm4D_znhits;
|
75 |
|
76 |
TClonesArray *segm4D_phiHits_Pos;
|
77 |
TClonesArray *segm4D_phiHits_PosCh;
|
78 |
TClonesArray *segm4D_phiHits_PosErr;
|
79 |
TClonesArray *segm4D_phiHits_Side;
|
80 |
TClonesArray *segm4D_phiHits_Wire;
|
81 |
TClonesArray *segm4D_phiHits_Layer;
|
82 |
|
83 |
TClonesArray *segm4D_zHits_Pos;
|
84 |
TClonesArray *segm4D_zHits_PosCh;
|
85 |
TClonesArray *segm4D_zHits_PosErr;
|
86 |
TClonesArray *segm4D_zHits_Side;
|
87 |
TClonesArray *segm4D_zHits_Wire;
|
88 |
TClonesArray *segm4D_zHits_Layer;
|
89 |
|
90 |
//CSC segment variables
|
91 |
std::vector<short> cscsegm_ring;
|
92 |
std::vector<short> cscsegm_chamber;
|
93 |
std::vector<short> cscsegm_station;
|
94 |
std::vector<float> cscsegm_cosx;
|
95 |
std::vector<float> cscsegm_cosy;
|
96 |
std::vector<float> cscsegm_cosz;
|
97 |
std::vector<float> cscsegm_phi;
|
98 |
std::vector<float> cscsegm_eta;
|
99 |
std::vector<float> cscsegm_normchi2;
|
100 |
std::vector<short> cscsegm_nRecHits;
|
101 |
|
102 |
//DCC variables
|
103 |
std::vector<short> ltDCC_wheel;
|
104 |
std::vector<short> ltDCC_sector;
|
105 |
std::vector<short> ltDCC_station;
|
106 |
std::vector<short> ltDCC_quality;
|
107 |
std::vector<short> ltDCC_bx;
|
108 |
std::vector<float> ltDCC_phi;
|
109 |
std::vector<float> ltDCC_phiB;
|
110 |
std::vector<short> ltDCC_is2nd;
|
111 |
|
112 |
std::vector<short> ltDCC_thBx;
|
113 |
std::vector<short> ltDCC_thWheel;
|
114 |
std::vector<short> ltDCC_thSector;
|
115 |
std::vector<short> ltDCC_thStation;
|
116 |
std::vector<short> ltDCC_thHits;
|
117 |
// std::vector<float> ltDCC_thX;
|
118 |
// std::vector<float> ltDCC_thY;
|
119 |
// TMatrixD ltDCC_thTheta;
|
120 |
// TMatrixD ltDCC_thCode;
|
121 |
|
122 |
//DDU variables
|
123 |
std::vector<short> ltDDU_wheel;
|
124 |
std::vector<short> ltDDU_sector;
|
125 |
std::vector<short> ltDDU_station;
|
126 |
std::vector<short> ltDDU_bx;
|
127 |
std::vector<short> ltDDU_phiQual;
|
128 |
std::vector<short> ltDDU_thQual;
|
129 |
std::vector<short> ltDDU_is2nd;
|
130 |
|
131 |
//muon variables
|
132 |
std::vector<short> STAMu_isMuGlobal;
|
133 |
std::vector<short> STAMu_isMuTracker;
|
134 |
std::vector<int> STAMu_numberOfChambers;
|
135 |
std::vector<int> STAMu_numberOfMatches;
|
136 |
std::vector<int> STAMu_numberOfHits;
|
137 |
std::vector<int> STAMu_segmIndex;
|
138 |
|
139 |
std::vector<float> Mu_px_mu;
|
140 |
std::vector<float> Mu_py_mu;
|
141 |
std::vector<float> Mu_pz_mu;
|
142 |
std::vector<float> Mu_phi_mu;
|
143 |
std::vector<float> Mu_eta_mu;
|
144 |
std::vector<short> STAMu_recHitsSize;
|
145 |
std::vector<float> STAMu_normchi2Mu;
|
146 |
std::vector<short> STAMu_chargeMu;
|
147 |
std::vector<float> STAMu_dxyMu;
|
148 |
std::vector<float> STAMu_dzMu;
|
149 |
|
150 |
std::vector<float> GLBMu_normchi2Mu;
|
151 |
std::vector<float> GLBMu_dxyMu;
|
152 |
std::vector<float> GLBMu_dzMu;
|
153 |
|
154 |
std::vector<int> GLBMu_numberOfPixelHits;
|
155 |
std::vector<int> GLBMu_numberOfTrackerHits;
|
156 |
|
157 |
std::vector<float> GLBMu_tkIsoR03;
|
158 |
std::vector<float> GLBMu_ntkIsoR03;
|
159 |
std::vector<float> GLBMu_emIsoR03;
|
160 |
std::vector<float> GLBMu_hadIsoR03;
|
161 |
|
162 |
std::vector<float> STAMu_caloCompatibility;
|
163 |
|
164 |
std::vector<float> STAMu_z_mb2;
|
165 |
std::vector<float> STAMu_phi_mb2;
|
166 |
std::vector<float> STAMu_pseta_mb2;
|
167 |
|
168 |
//GMT
|
169 |
std::vector<short> gmt_bx;
|
170 |
std::vector<float> gmt_phi;
|
171 |
std::vector<float> gmt_eta;
|
172 |
std::vector<float> gmt_pt;
|
173 |
std::vector<short> gmt_qual;
|
174 |
std::vector<short> gmt_detector;
|
175 |
|
176 |
std::vector<short> gmt_cands_fwd;
|
177 |
std::vector<short> gmt_cands_isRpc;
|
178 |
std::vector<short> gmt_cands_bx;
|
179 |
std::vector<float> gmt_cands_phi;
|
180 |
std::vector<float> gmt_cands_eta;
|
181 |
std::vector<float> gmt_cands_pt;
|
182 |
std::vector<short> gmt_cands_qual;
|
183 |
std::vector<short> gmt_cands_ismatched;
|
184 |
|
185 |
//GT
|
186 |
std::vector<short> gt_algo_bx;
|
187 |
std::vector<short> gt_algo_bit;
|
188 |
std::vector<short> gt_tt_bx;
|
189 |
std::vector<short> gt_tt_bit;
|