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