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 PT; // generator PT
|
---|
48 | float SmearedPT; // recoPT / genPT
|
---|
49 | float E; // generator E
|
---|
50 | float dE; // (recoE-genE)/genE
|
---|
51 | float dE2; // ( (recoE-genE)/ genE )^2
|
---|
52 |
|
---|
53 | static TCompare *fgCompare; //!
|
---|
54 | const TCompare *GetCompare() const { return fgCompare; }
|
---|
55 |
|
---|
56 |
|
---|
57 | ClassDef(RESOLJET,1)
|
---|
58 |
|
---|
59 | };
|
---|
60 |
|
---|
61 |
|
---|
62 | //------------------------------------------------------------------------------
|
---|
63 |
|
---|
64 | class RESOLELEC : public TSortableObject
|
---|
65 | {
|
---|
66 | public:
|
---|
67 | Float_t E;
|
---|
68 | Float_t SmearedE;
|
---|
69 |
|
---|
70 | static TCompare *fgCompare; //!
|
---|
71 | const TCompare *GetCompare() const { return fgCompare; }
|
---|
72 |
|
---|
73 |
|
---|
74 | ClassDef(RESOLELEC,1)
|
---|
75 |
|
---|
76 | };
|
---|
77 |
|
---|
78 | //------------------------------------------------------------------------------
|
---|
79 |
|
---|
80 | class RESOLMUON : public TSortableObject
|
---|
81 | {
|
---|
82 | public:
|
---|
83 | Float_t OverSmearedPT;
|
---|
84 | Float_t OverPT;
|
---|
85 |
|
---|
86 | static TCompare *fgCompare; //!
|
---|
87 | const TCompare *GetCompare() const { return fgCompare; }
|
---|
88 |
|
---|
89 |
|
---|
90 | ClassDef(RESOLMUON,1)
|
---|
91 |
|
---|
92 | };
|
---|
93 |
|
---|
94 | //------------------------------------------------------------------------------
|
---|
95 |
|
---|
96 | class TAUHAD : public TSortableObject
|
---|
97 | {
|
---|
98 | public:
|
---|
99 | Float_t EnergieCen;
|
---|
100 | Float_t NumTrack;
|
---|
101 |
|
---|
102 | static TCompare *fgCompare; //!
|
---|
103 | const TCompare *GetCompare() const { return fgCompare; }
|
---|
104 |
|
---|
105 |
|
---|
106 | ClassDef(TAUHAD,1)
|
---|
107 |
|
---|
108 | };
|
---|
109 |
|
---|
110 | //---------------------------------------------
|
---|
111 |
|
---|
112 | class ETMIS : public TSortableObject
|
---|
113 | {
|
---|
114 | public:
|
---|
115 | Float_t Et;
|
---|
116 | Float_t SEt;
|
---|
117 | Float_t Ex;
|
---|
118 | Float_t EtSmeare;
|
---|
119 | Float_t ExSmeare;
|
---|
120 |
|
---|
121 | static TCompare *fgCompare; //!
|
---|
122 | const TCompare *GetCompare() const { return fgCompare; }
|
---|
123 |
|
---|
124 |
|
---|
125 | ClassDef(ETMIS,1)
|
---|
126 |
|
---|
127 | };
|
---|
128 |
|
---|
129 |
|
---|
130 | //------------------------------------------------------------------------------
|
---|
131 |
|
---|
132 | class RECZ : public TObject
|
---|
133 | {
|
---|
134 | public:
|
---|
135 |
|
---|
136 | Float_t M;
|
---|
137 |
|
---|
138 | ClassDef(RECZ,1)
|
---|
139 | };
|
---|
140 |
|
---|
141 | //------------------------------------------------------------------------------
|
---|
142 |
|
---|
143 | class HWWT : public TObject
|
---|
144 | {
|
---|
145 | public:
|
---|
146 |
|
---|
147 | Float_t DeltaPhi;
|
---|
148 | Float_t DeltaEta;
|
---|
149 | Float_t M;
|
---|
150 | ClassDef(HWWT,1)
|
---|
151 | };
|
---|
152 |
|
---|
153 |
|
---|
154 | //------------------------------------------------------------------------------
|
---|
155 |
|
---|
156 | class RECW : public TObject
|
---|
157 | {
|
---|
158 | public:
|
---|
159 |
|
---|
160 | Float_t M;
|
---|
161 |
|
---|
162 | ClassDef(RECW,1)
|
---|
163 | };
|
---|
164 |
|
---|
165 | //------------------------------------------------------------------------------
|
---|
166 |
|
---|
167 | class RECH : public TObject
|
---|
168 | {
|
---|
169 | public:
|
---|
170 |
|
---|
171 | Float_t M;
|
---|
172 |
|
---|
173 | ClassDef(RECH,1)
|
---|
174 | };
|
---|
175 |
|
---|
176 |
|
---|
177 | class TRACKOF : public TObject
|
---|
178 | {
|
---|
179 | public:
|
---|
180 |
|
---|
181 | Float_t SUM;
|
---|
182 | Float_t NUM;
|
---|
183 |
|
---|
184 |
|
---|
185 | ClassDef(TRACKOF,1)
|
---|
186 | };
|
---|
187 |
|
---|
188 |
|
---|
189 | //------------------------------------------------------------------------------
|
---|
190 |
|
---|
191 | class TRACK : public TObject
|
---|
192 | {
|
---|
193 | public:
|
---|
194 |
|
---|
195 | Float_t SUM;
|
---|
196 | Float_t NUM;
|
---|
197 |
|
---|
198 |
|
---|
199 | ClassDef(TRACK,1)
|
---|
200 | };
|
---|
201 |
|
---|
202 | class TRACKhbb : public TObject
|
---|
203 | {
|
---|
204 | public:
|
---|
205 |
|
---|
206 | Float_t SUM;
|
---|
207 | Float_t NUM;
|
---|
208 |
|
---|
209 |
|
---|
210 | ClassDef(TRACKhbb,1)
|
---|
211 | };
|
---|
212 |
|
---|
213 |
|
---|
214 | //------------------------------------------------------------------------------
|
---|
215 |
|
---|
216 | class PTMIS : public TObject
|
---|
217 | {
|
---|
218 | public:
|
---|
219 |
|
---|
220 | Float_t PT;
|
---|
221 |
|
---|
222 | ClassDef(PTMIS,1)
|
---|
223 | };
|
---|
224 |
|
---|
225 |
|
---|
226 | //------------------------------------------------------------------------------
|
---|
227 |
|
---|
228 | class ASYM: public TObject
|
---|
229 | {
|
---|
230 | public:
|
---|
231 |
|
---|
232 | Float_t Val;
|
---|
233 |
|
---|
234 | ClassDef(ASYM, 1)
|
---|
235 | };
|
---|
236 |
|
---|
237 | //------------------------------------------------------------------------------
|
---|
238 |
|
---|
239 | class HFENERGY : public TObject
|
---|
240 | {
|
---|
241 | public:
|
---|
242 |
|
---|
243 | Float_t E;
|
---|
244 |
|
---|
245 | ClassDef(HFENERGY,1)
|
---|
246 | };
|
---|
247 |
|
---|
248 | //------------------------------------------------------------------------------
|
---|
249 |
|
---|
250 | class NUMLEPT : public TObject
|
---|
251 | {
|
---|
252 | public:
|
---|
253 |
|
---|
254 | Int_t Num;
|
---|
255 |
|
---|
256 | ClassDef(NUMLEPT,1)
|
---|
257 | };
|
---|
258 |
|
---|
259 | //------------------------------------------------------------------------------
|
---|
260 | class LEPT1: public TObject
|
---|
261 | {
|
---|
262 | public:
|
---|
263 |
|
---|
264 | Float_t lept1PT;
|
---|
265 | Float_t lept1ETA;
|
---|
266 |
|
---|
267 | ClassDef(LEPT1, 1)
|
---|
268 | };
|
---|
269 |
|
---|
270 | //------------------------------------------------------------------------------
|
---|
271 |
|
---|
272 | class LEPT2: public TObject
|
---|
273 | {
|
---|
274 | public:
|
---|
275 |
|
---|
276 | Float_t lept2PT;
|
---|
277 | Float_t lept2ETA;
|
---|
278 |
|
---|
279 | ClassDef(LEPT2, 1)
|
---|
280 | };
|
---|
281 |
|
---|
282 | //------------------------------------------------------------------------------
|
---|
283 |
|
---|
284 | class LEPT3: public TObject
|
---|
285 | {
|
---|
286 | public:
|
---|
287 |
|
---|
288 | Float_t lept3PT;
|
---|
289 | Float_t lept3ETA;
|
---|
290 |
|
---|
291 | ClassDef(LEPT3, 1)
|
---|
292 | };
|
---|
293 |
|
---|
294 |
|
---|
295 | //------------------------------------------------------------------------------
|
---|
296 |
|
---|
297 | class NUMBJET: public TObject
|
---|
298 | {
|
---|
299 | public:
|
---|
300 |
|
---|
301 | Int_t Num;
|
---|
302 |
|
---|
303 | ClassDef(NUMBJET,1)
|
---|
304 | };
|
---|
305 |
|
---|
306 | //------------------------------------------------------------------------------
|
---|
307 |
|
---|
308 | class BJET1: public TObject
|
---|
309 | {
|
---|
310 | public:
|
---|
311 |
|
---|
312 | Float_t bjet1PT;
|
---|
313 | Float_t bjet1ETA;
|
---|
314 |
|
---|
315 | ClassDef(BJET1, 1)
|
---|
316 | };
|
---|
317 |
|
---|
318 | //------------------------------------------------------------------------------
|
---|
319 |
|
---|
320 | class BJET2: public TObject
|
---|
321 | {
|
---|
322 | public:
|
---|
323 |
|
---|
324 | Float_t bjet2PT;
|
---|
325 | Float_t bjet2ETA;
|
---|
326 |
|
---|
327 | ClassDef(BJET2, 1)
|
---|
328 | };
|
---|
329 | //------------------------------------------------------------------------------
|
---|
330 |
|
---|
331 | class BJET3: public TObject
|
---|
332 | {
|
---|
333 | public:
|
---|
334 |
|
---|
335 | Float_t bjet3PT;
|
---|
336 | Float_t bjet3ETA;
|
---|
337 |
|
---|
338 | ClassDef(BJET3, 1)
|
---|
339 | };
|
---|
340 |
|
---|
341 | //------------------------------------------------------------------------------
|
---|
342 |
|
---|
343 | class JET1: public TObject
|
---|
344 | {
|
---|
345 | public:
|
---|
346 |
|
---|
347 | Float_t jet1PT;
|
---|
348 | Float_t jet1ETA;
|
---|
349 |
|
---|
350 | ClassDef(JET1, 1)
|
---|
351 | };
|
---|
352 |
|
---|
353 | //------------------------------------------------------------------------------
|
---|
354 |
|
---|
355 | class JET2: public TObject
|
---|
356 | {
|
---|
357 | public:
|
---|
358 |
|
---|
359 | Float_t jet2PT;
|
---|
360 | Float_t jet2ETA;
|
---|
361 |
|
---|
362 | ClassDef(JET2, 1)
|
---|
363 | };
|
---|
364 |
|
---|
365 | //------------------------------------------------------------------------------
|
---|
366 |
|
---|
367 | class JET3: public TObject
|
---|
368 | {
|
---|
369 | public:
|
---|
370 |
|
---|
371 | Float_t jet3PT;
|
---|
372 | Float_t jet3ETA;
|
---|
373 |
|
---|
374 | ClassDef(JET3, 1)
|
---|
375 | };
|
---|
376 |
|
---|
377 | //------------------------------------------------------------------------------
|
---|
378 |
|
---|
379 | class VSUM: public TObject
|
---|
380 | {
|
---|
381 | public:
|
---|
382 |
|
---|
383 | Float_t Scalar;
|
---|
384 | Float_t Vector;
|
---|
385 | Float_t VectorEta;
|
---|
386 | Float_t ScalarJet;
|
---|
387 |
|
---|
388 | ClassDef(VSUM, 1)
|
---|
389 | };
|
---|
390 |
|
---|
391 |
|
---|
392 | //------------------------------------------------------------------------------
|
---|
393 |
|
---|
394 | class NUMJET : public TObject
|
---|
395 | {
|
---|
396 | public:
|
---|
397 |
|
---|
398 | Int_t Num;
|
---|
399 |
|
---|
400 | ClassDef(NUMJET,1)
|
---|
401 | };
|
---|
402 |
|
---|
403 |
|
---|
404 | //------------------------------------------------------------------------------
|
---|
405 |
|
---|
406 | class TWOLEPTON : public TObject
|
---|
407 | {
|
---|
408 | public:
|
---|
409 |
|
---|
410 | Float_t INV;
|
---|
411 | Float_t PHISEP;
|
---|
412 |
|
---|
413 | ClassDef(TWOLEPTON,1)
|
---|
414 | };
|
---|
415 |
|
---|
416 |
|
---|
417 | class ETASEP : public TObject
|
---|
418 | {
|
---|
419 | public:
|
---|
420 |
|
---|
421 | Float_t Val;
|
---|
422 |
|
---|
423 | ClassDef(ETASEP,1)
|
---|
424 | };
|
---|
425 |
|
---|
426 |
|
---|
427 | #endif /* TreeClasses_h */
|
---|