1 | #ifndef TreeClasses_h
|
---|
2 | #define TreeClasses_h
|
---|
3 |
|
---|
4 | /***********************************************************************
|
---|
5 | ** **
|
---|
6 | ** /----------------------------------------------\ **
|
---|
7 | ** | Delphes, a framework for the fast simulation | **
|
---|
8 | ** | of a generic collider experiment | **
|
---|
9 | ** \------------- arXiv:0903.2225v1 ------------/ **
|
---|
10 | ** **
|
---|
11 | ** **
|
---|
12 | ** This package uses: **
|
---|
13 | ** ------------------ **
|
---|
14 | ** ROOT: Nucl. Inst. & Meth. in Phys. Res. A389 (1997) 81-86 **
|
---|
15 | ** FastJet algorithm: Phys. Lett. B641 (2006) [hep-ph/0512210] **
|
---|
16 | ** Hector: JINST 2:P09005 (2007) [physics.acc-ph:0707.1198v2] **
|
---|
17 | ** FROG: [hep-ex/0901.2718v1] **
|
---|
18 | ** HepMC: Comput. Phys. Commun.134 (2001) 41 **
|
---|
19 | ** **
|
---|
20 | ** ------------------------------------------------------------------ **
|
---|
21 | ** **
|
---|
22 | ** Main authors: **
|
---|
23 | ** ------------- **
|
---|
24 | ** **
|
---|
25 | ** Severine Ovyn Xavier Rouby **
|
---|
26 | ** severine.ovyn@uclouvain.be xavier.rouby@cern **
|
---|
27 | ** **
|
---|
28 | ** Center for Particle Physics and Phenomenology (CP3) **
|
---|
29 | ** Universite catholique de Louvain (UCL) **
|
---|
30 | ** Louvain-la-Neuve, Belgium **
|
---|
31 | ** **
|
---|
32 | ** Copyright (C) 2008-2009, **
|
---|
33 | ** All rights reserved. **
|
---|
34 | ** **
|
---|
35 | ***********************************************************************/
|
---|
36 |
|
---|
37 |
|
---|
38 | #include "TObject.h"
|
---|
39 | #include "Utilities/ExRootAnalysis/interface/BlockCompare.h"
|
---|
40 | #include "Utilities/ExRootAnalysis/interface/BlockClasses.h"
|
---|
41 |
|
---|
42 | //------------------------------------------------------------------------------
|
---|
43 |
|
---|
44 | class RESOLJET : public TSortableObject
|
---|
45 | {
|
---|
46 | public:
|
---|
47 | float SmearedPT;
|
---|
48 | float PT;
|
---|
49 | float E; // generator E
|
---|
50 | float dE; // (recoE-genE)/genE
|
---|
51 | float dE2; // ( (recoE-genE)/ genE )^2
|
---|
52 | float Eta; // generator-level eta
|
---|
53 | float dE_reco; // (recoE-genE)/recoE
|
---|
54 | float dE2_reco; // ( (recoE-genE)/ recoE )^2
|
---|
55 |
|
---|
56 |
|
---|
57 | static TCompare *fgCompare; //!
|
---|
58 | const TCompare *GetCompare() const { return fgCompare; }
|
---|
59 |
|
---|
60 |
|
---|
61 | ClassDef(RESOLJET,1)
|
---|
62 |
|
---|
63 | };
|
---|
64 |
|
---|
65 |
|
---|
66 | //------------------------------------------------------------------------------
|
---|
67 |
|
---|
68 | class RESOLELEC : public TSortableObject
|
---|
69 | {
|
---|
70 | public:
|
---|
71 | Float_t E;
|
---|
72 | Float_t SmearedE;
|
---|
73 |
|
---|
74 | static TCompare *fgCompare; //!
|
---|
75 | const TCompare *GetCompare() const { return fgCompare; }
|
---|
76 |
|
---|
77 |
|
---|
78 | ClassDef(RESOLELEC,1)
|
---|
79 |
|
---|
80 | };
|
---|
81 |
|
---|
82 | //------------------------------------------------------------------------------
|
---|
83 |
|
---|
84 | class RESOLMUON : public TSortableObject
|
---|
85 | {
|
---|
86 | public:
|
---|
87 | Float_t OverSmearedPT;
|
---|
88 | Float_t OverPT;
|
---|
89 |
|
---|
90 | static TCompare *fgCompare; //!
|
---|
91 | const TCompare *GetCompare() const { return fgCompare; }
|
---|
92 |
|
---|
93 |
|
---|
94 | ClassDef(RESOLMUON,1)
|
---|
95 |
|
---|
96 | };
|
---|
97 |
|
---|
98 | //------------------------------------------------------------------------------
|
---|
99 |
|
---|
100 | class TAUHAD : public TSortableObject
|
---|
101 | {
|
---|
102 | public:
|
---|
103 | Float_t EnergieCen;
|
---|
104 | Float_t NumTrack;
|
---|
105 |
|
---|
106 | static TCompare *fgCompare; //!
|
---|
107 | const TCompare *GetCompare() const { return fgCompare; }
|
---|
108 |
|
---|
109 |
|
---|
110 | ClassDef(TAUHAD,1)
|
---|
111 |
|
---|
112 | };
|
---|
113 |
|
---|
114 | //---------------------------------------------
|
---|
115 |
|
---|
116 | class ETMIS : public TSortableObject
|
---|
117 | {
|
---|
118 | public:
|
---|
119 | Float_t Et;
|
---|
120 | Float_t SEt;
|
---|
121 | Float_t Ex;
|
---|
122 | Float_t EtSmeare;
|
---|
123 | Float_t ExSmeare;
|
---|
124 |
|
---|
125 | static TCompare *fgCompare; //!
|
---|
126 | const TCompare *GetCompare() const { return fgCompare; }
|
---|
127 |
|
---|
128 |
|
---|
129 | ClassDef(ETMIS,1)
|
---|
130 |
|
---|
131 | };
|
---|
132 |
|
---|
133 |
|
---|
134 | //------------------------------------------------------------------------------
|
---|
135 |
|
---|
136 | class RECZ : public TObject
|
---|
137 | {
|
---|
138 | public:
|
---|
139 |
|
---|
140 | Float_t M;
|
---|
141 |
|
---|
142 | ClassDef(RECZ,1)
|
---|
143 | };
|
---|
144 |
|
---|
145 | //------------------------------------------------------------------------------
|
---|
146 |
|
---|
147 | class HWWT : public TObject
|
---|
148 | {
|
---|
149 | public:
|
---|
150 |
|
---|
151 | Float_t DeltaPhi;
|
---|
152 | Float_t DeltaEta;
|
---|
153 | Float_t M;
|
---|
154 | ClassDef(HWWT,1)
|
---|
155 | };
|
---|
156 |
|
---|
157 |
|
---|
158 | //------------------------------------------------------------------------------
|
---|
159 |
|
---|
160 | class RECW : public TObject
|
---|
161 | {
|
---|
162 | public:
|
---|
163 |
|
---|
164 | Float_t M;
|
---|
165 |
|
---|
166 | ClassDef(RECW,1)
|
---|
167 | };
|
---|
168 |
|
---|
169 | //------------------------------------------------------------------------------
|
---|
170 |
|
---|
171 | class RECH : public TObject
|
---|
172 | {
|
---|
173 | public:
|
---|
174 |
|
---|
175 | Float_t M;
|
---|
176 |
|
---|
177 | ClassDef(RECH,1)
|
---|
178 | };
|
---|
179 |
|
---|
180 |
|
---|
181 | class TRACKOF : public TObject
|
---|
182 | {
|
---|
183 | public:
|
---|
184 |
|
---|
185 | Float_t SUM;
|
---|
186 | Float_t NUM;
|
---|
187 |
|
---|
188 |
|
---|
189 | ClassDef(TRACKOF,1)
|
---|
190 | };
|
---|
191 |
|
---|
192 |
|
---|
193 | //------------------------------------------------------------------------------
|
---|
194 |
|
---|
195 | class TRACK : public TObject
|
---|
196 | {
|
---|
197 | public:
|
---|
198 |
|
---|
199 | Float_t SUM;
|
---|
200 | Float_t NUM;
|
---|
201 |
|
---|
202 |
|
---|
203 | ClassDef(TRACK,1)
|
---|
204 | };
|
---|
205 |
|
---|
206 | class TRACKhbb : public TObject
|
---|
207 | {
|
---|
208 | public:
|
---|
209 |
|
---|
210 | Float_t SUM;
|
---|
211 | Float_t NUM;
|
---|
212 |
|
---|
213 |
|
---|
214 | ClassDef(TRACKhbb,1)
|
---|
215 | };
|
---|
216 |
|
---|
217 |
|
---|
218 | //------------------------------------------------------------------------------
|
---|
219 |
|
---|
220 | class PTMIS : public TObject
|
---|
221 | {
|
---|
222 | public:
|
---|
223 |
|
---|
224 | Float_t PT;
|
---|
225 |
|
---|
226 | ClassDef(PTMIS,1)
|
---|
227 | };
|
---|
228 |
|
---|
229 |
|
---|
230 | //------------------------------------------------------------------------------
|
---|
231 |
|
---|
232 | class ASYM: public TObject
|
---|
233 | {
|
---|
234 | public:
|
---|
235 |
|
---|
236 | Float_t Val;
|
---|
237 |
|
---|
238 | ClassDef(ASYM, 1)
|
---|
239 | };
|
---|
240 |
|
---|
241 | //------------------------------------------------------------------------------
|
---|
242 |
|
---|
243 | class HFENERGY : public TObject
|
---|
244 | {
|
---|
245 | public:
|
---|
246 |
|
---|
247 | Float_t E;
|
---|
248 |
|
---|
249 | ClassDef(HFENERGY,1)
|
---|
250 | };
|
---|
251 |
|
---|
252 | //------------------------------------------------------------------------------
|
---|
253 |
|
---|
254 | class NUMLEPT : public TObject
|
---|
255 | {
|
---|
256 | public:
|
---|
257 |
|
---|
258 | Int_t Num;
|
---|
259 |
|
---|
260 | ClassDef(NUMLEPT,1)
|
---|
261 | };
|
---|
262 |
|
---|
263 | //------------------------------------------------------------------------------
|
---|
264 | class LEPT1: public TObject
|
---|
265 | {
|
---|
266 | public:
|
---|
267 |
|
---|
268 | Float_t lept1PT;
|
---|
269 | Float_t lept1ETA;
|
---|
270 |
|
---|
271 | ClassDef(LEPT1, 1)
|
---|
272 | };
|
---|
273 |
|
---|
274 | //------------------------------------------------------------------------------
|
---|
275 |
|
---|
276 | class LEPT2: public TObject
|
---|
277 | {
|
---|
278 | public:
|
---|
279 |
|
---|
280 | Float_t lept2PT;
|
---|
281 | Float_t lept2ETA;
|
---|
282 |
|
---|
283 | ClassDef(LEPT2, 1)
|
---|
284 | };
|
---|
285 |
|
---|
286 | //------------------------------------------------------------------------------
|
---|
287 |
|
---|
288 | class LEPT3: public TObject
|
---|
289 | {
|
---|
290 | public:
|
---|
291 |
|
---|
292 | Float_t lept3PT;
|
---|
293 | Float_t lept3ETA;
|
---|
294 |
|
---|
295 | ClassDef(LEPT3, 1)
|
---|
296 | };
|
---|
297 |
|
---|
298 |
|
---|
299 | //------------------------------------------------------------------------------
|
---|
300 |
|
---|
301 | class NUMBJET: public TObject
|
---|
302 | {
|
---|
303 | public:
|
---|
304 |
|
---|
305 | Int_t Num;
|
---|
306 |
|
---|
307 | ClassDef(NUMBJET,1)
|
---|
308 | };
|
---|
309 |
|
---|
310 | //------------------------------------------------------------------------------
|
---|
311 |
|
---|
312 | class BJET1: public TObject
|
---|
313 | {
|
---|
314 | public:
|
---|
315 |
|
---|
316 | Float_t bjet1PT;
|
---|
317 | Float_t bjet1ETA;
|
---|
318 |
|
---|
319 | ClassDef(BJET1, 1)
|
---|
320 | };
|
---|
321 |
|
---|
322 | //------------------------------------------------------------------------------
|
---|
323 |
|
---|
324 | class BJET2: public TObject
|
---|
325 | {
|
---|
326 | public:
|
---|
327 |
|
---|
328 | Float_t bjet2PT;
|
---|
329 | Float_t bjet2ETA;
|
---|
330 |
|
---|
331 | ClassDef(BJET2, 1)
|
---|
332 | };
|
---|
333 | //------------------------------------------------------------------------------
|
---|
334 |
|
---|
335 | class BJET3: public TObject
|
---|
336 | {
|
---|
337 | public:
|
---|
338 |
|
---|
339 | Float_t bjet3PT;
|
---|
340 | Float_t bjet3ETA;
|
---|
341 |
|
---|
342 | ClassDef(BJET3, 1)
|
---|
343 | };
|
---|
344 |
|
---|
345 | //------------------------------------------------------------------------------
|
---|
346 |
|
---|
347 | class JET1: public TObject
|
---|
348 | {
|
---|
349 | public:
|
---|
350 |
|
---|
351 | Float_t jet1PT;
|
---|
352 | Float_t jet1ETA;
|
---|
353 |
|
---|
354 | ClassDef(JET1, 1)
|
---|
355 | };
|
---|
356 |
|
---|
357 | //------------------------------------------------------------------------------
|
---|
358 |
|
---|
359 | class JET2: public TObject
|
---|
360 | {
|
---|
361 | public:
|
---|
362 |
|
---|
363 | Float_t jet2PT;
|
---|
364 | Float_t jet2ETA;
|
---|
365 |
|
---|
366 | ClassDef(JET2, 1)
|
---|
367 | };
|
---|
368 |
|
---|
369 | //------------------------------------------------------------------------------
|
---|
370 |
|
---|
371 | class JET3: public TObject
|
---|
372 | {
|
---|
373 | public:
|
---|
374 |
|
---|
375 | Float_t jet3PT;
|
---|
376 | Float_t jet3ETA;
|
---|
377 |
|
---|
378 | ClassDef(JET3, 1)
|
---|
379 | };
|
---|
380 |
|
---|
381 | //------------------------------------------------------------------------------
|
---|
382 |
|
---|
383 | class VSUM: public TObject
|
---|
384 | {
|
---|
385 | public:
|
---|
386 |
|
---|
387 | Float_t Scalar;
|
---|
388 | Float_t Vector;
|
---|
389 | Float_t VectorEta;
|
---|
390 | Float_t ScalarJet;
|
---|
391 |
|
---|
392 | ClassDef(VSUM, 1)
|
---|
393 | };
|
---|
394 |
|
---|
395 |
|
---|
396 | //------------------------------------------------------------------------------
|
---|
397 |
|
---|
398 | class NUMJET : public TObject
|
---|
399 | {
|
---|
400 | public:
|
---|
401 |
|
---|
402 | Int_t Num;
|
---|
403 |
|
---|
404 | ClassDef(NUMJET,1)
|
---|
405 | };
|
---|
406 |
|
---|
407 |
|
---|
408 | //------------------------------------------------------------------------------
|
---|
409 |
|
---|
410 | class TWOLEPTON : public TObject
|
---|
411 | {
|
---|
412 | public:
|
---|
413 |
|
---|
414 | Float_t INV;
|
---|
415 | Float_t PHISEP;
|
---|
416 |
|
---|
417 | ClassDef(TWOLEPTON,1)
|
---|
418 | };
|
---|
419 |
|
---|
420 |
|
---|
421 | class ETASEP : public TObject
|
---|
422 | {
|
---|
423 | public:
|
---|
424 |
|
---|
425 | Float_t Val;
|
---|
426 |
|
---|
427 | ClassDef(ETASEP,1)
|
---|
428 | };
|
---|
429 |
|
---|
430 |
|
---|
431 | #endif /* TreeClasses_h */
|
---|