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