[b443089] | 1 | /*
|
---|
| 2 | * Delphes: a framework for fast simulation of a generic collider experiment
|
---|
| 3 | * Copyright (C) 2012-2014 Universite catholique de Louvain (UCL), Belgium
|
---|
[1fa50c2] | 4 | *
|
---|
[b443089] | 5 | * This program is free software: you can redistribute it and/or modify
|
---|
| 6 | * it under the terms of the GNU General Public License as published by
|
---|
| 7 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 8 | * (at your option) any later version.
|
---|
[1fa50c2] | 9 | *
|
---|
[b443089] | 10 | * This program is distributed in the hope that it will be useful,
|
---|
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 13 | * GNU General Public License for more details.
|
---|
[1fa50c2] | 14 | *
|
---|
[b443089] | 15 | * You should have received a copy of the GNU General Public License
|
---|
| 16 | * along with this program. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 17 | */
|
---|
| 18 |
|
---|
[d7d2da3] | 19 | #ifndef DelphesClasses_h
|
---|
| 20 | #define DelphesClasses_h
|
---|
| 21 |
|
---|
| 22 | /**
|
---|
| 23 | *
|
---|
| 24 | * Definition of classes to be stored in the root tree.
|
---|
| 25 | * Function CompareXYZ sorts objects by the variable XYZ that MUST be
|
---|
| 26 | * present in the data members of the root tree class of the branch.
|
---|
| 27 | *
|
---|
| 28 | * \author P. Demin - UCL, Louvain-la-Neuve
|
---|
| 29 | *
|
---|
| 30 | */
|
---|
| 31 |
|
---|
| 32 | // Dependencies (#includes)
|
---|
| 33 |
|
---|
| 34 | #include "TRef.h"
|
---|
| 35 | #include "TObject.h"
|
---|
| 36 | #include "TRefArray.h"
|
---|
| 37 | #include "TLorentzVector.h"
|
---|
| 38 |
|
---|
| 39 | #include "classes/SortableObject.h"
|
---|
| 40 |
|
---|
| 41 | class DelphesFactory;
|
---|
| 42 |
|
---|
| 43 | //---------------------------------------------------------------------------
|
---|
| 44 |
|
---|
| 45 | class Event: public TObject
|
---|
| 46 | {
|
---|
| 47 | public:
|
---|
| 48 |
|
---|
| 49 | Long64_t Number; // event number
|
---|
| 50 |
|
---|
| 51 | Float_t ReadTime;
|
---|
[3b465ca] | 52 | Float_t ProcTime;
|
---|
[d7d2da3] | 53 |
|
---|
| 54 | ClassDef(Event, 1)
|
---|
| 55 | };
|
---|
| 56 |
|
---|
| 57 | //---------------------------------------------------------------------------
|
---|
| 58 |
|
---|
| 59 | class LHCOEvent: public Event
|
---|
| 60 | {
|
---|
| 61 | public:
|
---|
| 62 |
|
---|
| 63 | Int_t Trigger; // trigger word
|
---|
| 64 |
|
---|
| 65 | ClassDef(LHCOEvent, 1)
|
---|
| 66 | };
|
---|
| 67 |
|
---|
| 68 | //---------------------------------------------------------------------------
|
---|
| 69 |
|
---|
| 70 | class LHEFEvent: public Event
|
---|
| 71 | {
|
---|
| 72 | public:
|
---|
| 73 |
|
---|
| 74 | Int_t ProcessID; // subprocess code for the event | hepup.IDPRUP
|
---|
| 75 |
|
---|
| 76 | Float_t Weight; // weight for the event | hepup.XWGTUP
|
---|
| 77 | Float_t ScalePDF; // scale in GeV used in the calculation of the PDFs in the event | hepup.SCALUP
|
---|
| 78 | Float_t AlphaQED; // value of the QED coupling used in the event | hepup.AQEDUP
|
---|
| 79 | Float_t AlphaQCD; // value of the QCD coupling used in the event | hepup.AQCDUP
|
---|
| 80 |
|
---|
| 81 | ClassDef(LHEFEvent, 2)
|
---|
| 82 | };
|
---|
| 83 |
|
---|
| 84 | //---------------------------------------------------------------------------
|
---|
| 85 |
|
---|
[986d9d5] | 86 | class LHEFWeight: public TObject
|
---|
| 87 | {
|
---|
| 88 | public:
|
---|
| 89 | Int_t ID; // weight ID
|
---|
| 90 | Float_t Weight; // weight value
|
---|
| 91 |
|
---|
| 92 | ClassDef(LHEFWeight, 1)
|
---|
| 93 | };
|
---|
| 94 |
|
---|
| 95 | //---------------------------------------------------------------------------
|
---|
| 96 |
|
---|
[d7d2da3] | 97 | class HepMCEvent: public Event
|
---|
| 98 | {
|
---|
| 99 | public:
|
---|
| 100 |
|
---|
| 101 | Int_t ProcessID; // unique signal process id | signal_process_id()
|
---|
[3b465ca] | 102 | Int_t MPI; // number of multi parton interactions | mpi ()
|
---|
[d7d2da3] | 103 |
|
---|
[59abd43] | 104 | Float_t Weight; // weight for the event
|
---|
| 105 |
|
---|
[d7d2da3] | 106 | Float_t Scale; // energy scale, see hep-ph/0109068 | event_scale()
|
---|
| 107 | Float_t AlphaQED; // QED coupling, see hep-ph/0109068 | alphaQED()
|
---|
| 108 | Float_t AlphaQCD; // QCD coupling, see hep-ph/0109068 | alphaQCD()
|
---|
| 109 |
|
---|
| 110 | Int_t ID1; // flavour code of first parton | pdf_info()->id1()
|
---|
[3b465ca] | 111 | Int_t ID2; // flavour code of second parton | pdf_info()->id2()
|
---|
[d7d2da3] | 112 |
|
---|
| 113 | Float_t X1; // fraction of beam momentum carried by first parton ("beam side") | pdf_info()->x1()
|
---|
| 114 | Float_t X2; // fraction of beam momentum carried by second parton ("target side") | pdf_info()->x2()
|
---|
| 115 |
|
---|
| 116 | Float_t ScalePDF; // Q-scale used in evaluation of PDF's (in GeV) | pdf_info()->scalePDF()
|
---|
| 117 |
|
---|
| 118 | Float_t PDF1; // PDF (id1, x1, Q) | pdf_info()->pdf1()
|
---|
| 119 | Float_t PDF2; // PDF (id2, x2, Q) | pdf_info()->pdf2()
|
---|
| 120 |
|
---|
| 121 | ClassDef(HepMCEvent, 2)
|
---|
| 122 | };
|
---|
| 123 |
|
---|
| 124 | //---------------------------------------------------------------------------
|
---|
| 125 |
|
---|
| 126 | class GenParticle: public SortableObject
|
---|
| 127 | {
|
---|
| 128 | public:
|
---|
| 129 | Int_t PID; // particle HEP ID number | hepevt.idhep[number]
|
---|
| 130 |
|
---|
| 131 | Int_t Status; // particle status | hepevt.isthep[number]
|
---|
| 132 | Int_t IsPU; // 0 or 1 for particles from pile-up interactions
|
---|
[3b465ca] | 133 |
|
---|
[d7d2da3] | 134 | Int_t M1; // particle 1st mother | hepevt.jmohep[number][0] - 1
|
---|
| 135 | Int_t M2; // particle 2nd mother | hepevt.jmohep[number][1] - 1
|
---|
| 136 |
|
---|
| 137 | Int_t D1; // particle 1st daughter | hepevt.jdahep[number][0] - 1
|
---|
| 138 | Int_t D2; // particle last daughter | hepevt.jdahep[number][1] - 1
|
---|
| 139 |
|
---|
| 140 | Int_t Charge; // particle charge
|
---|
| 141 |
|
---|
| 142 | Float_t Mass; // particle mass
|
---|
| 143 |
|
---|
| 144 | Float_t E; // particle energy | hepevt.phep[number][3]
|
---|
| 145 | Float_t Px; // particle momentum vector (x component) | hepevt.phep[number][0]
|
---|
| 146 | Float_t Py; // particle momentum vector (y component) | hepevt.phep[number][1]
|
---|
| 147 | Float_t Pz; // particle momentum vector (z component) | hepevt.phep[number][2]
|
---|
| 148 |
|
---|
[acd0621] | 149 | Float_t D0;
|
---|
| 150 | Float_t DZ;
|
---|
| 151 | Float_t P;
|
---|
| 152 | Float_t PT;
|
---|
| 153 | Float_t CtgTheta;
|
---|
| 154 | Float_t Phi;
|
---|
[d7d2da3] | 155 | Float_t Eta; // particle pseudorapidity
|
---|
| 156 | Float_t Rapidity; // particle rapidity
|
---|
| 157 |
|
---|
| 158 | Float_t T; // particle vertex position (t component) | hepevt.vhep[number][3]
|
---|
| 159 | Float_t X; // particle vertex position (x component) | hepevt.vhep[number][0]
|
---|
| 160 | Float_t Y; // particle vertex position (y component) | hepevt.vhep[number][1]
|
---|
| 161 | Float_t Z; // particle vertex position (z component) | hepevt.vhep[number][2]
|
---|
| 162 |
|
---|
| 163 | static CompBase *fgCompare; //!
|
---|
| 164 | const CompBase *GetCompare() const { return fgCompare; }
|
---|
[3b465ca] | 165 |
|
---|
[2b3ef28] | 166 | TLorentzVector P4() const;
|
---|
[d7d2da3] | 167 |
|
---|
| 168 | ClassDef(GenParticle, 1)
|
---|
| 169 | };
|
---|
| 170 |
|
---|
| 171 | //---------------------------------------------------------------------------
|
---|
| 172 |
|
---|
[f59a7b6] | 173 | class Vertex: public SortableObject
|
---|
[d07e957] | 174 | {
|
---|
| 175 | public:
|
---|
| 176 | Float_t T; // vertex position (t component)
|
---|
| 177 | Float_t X; // vertex position (x component)
|
---|
| 178 | Float_t Y; // vertex position (y component)
|
---|
| 179 | Float_t Z; // vertex position (z component)
|
---|
[0e2f49b] | 180 |
|
---|
| 181 | Double_t ErrorX;
|
---|
| 182 | Double_t ErrorY;
|
---|
| 183 | Double_t ErrorZ;
|
---|
| 184 |
|
---|
| 185 | Int_t Index;
|
---|
| 186 | Int_t NDF;
|
---|
| 187 | Double_t Sigma;
|
---|
| 188 | Double_t SumPT2;
|
---|
| 189 | Double_t BTVSumPT2;
|
---|
| 190 | Double_t GenDeltaZ;
|
---|
| 191 | Double_t GenSumPT2;
|
---|
| 192 |
|
---|
[3c46e17] | 193 | static CompBase *fgCompare; //!
|
---|
| 194 | const CompBase *GetCompare() const { return fgCompare; }
|
---|
| 195 |
|
---|
| 196 | ClassDef(Vertex, 3)
|
---|
[d07e957] | 197 | };
|
---|
| 198 |
|
---|
| 199 | //---------------------------------------------------------------------------
|
---|
| 200 |
|
---|
[d7d2da3] | 201 | class MissingET: public TObject
|
---|
| 202 | {
|
---|
| 203 | public:
|
---|
| 204 | Float_t MET; // mising transverse energy
|
---|
[4ad7b96] | 205 | Float_t Eta; // mising energy pseudorapidity
|
---|
[d7d2da3] | 206 | Float_t Phi; // mising energy azimuthal angle
|
---|
| 207 |
|
---|
[2b3ef28] | 208 | TLorentzVector P4() const;
|
---|
[4ad7b96] | 209 |
|
---|
[d7d2da3] | 210 | ClassDef(MissingET, 1)
|
---|
| 211 | };
|
---|
| 212 |
|
---|
| 213 | //---------------------------------------------------------------------------
|
---|
| 214 |
|
---|
| 215 | class ScalarHT: public TObject
|
---|
| 216 | {
|
---|
| 217 | public:
|
---|
| 218 | Float_t HT; // scalar sum of transverse momenta
|
---|
| 219 |
|
---|
| 220 | ClassDef(ScalarHT, 1)
|
---|
| 221 | };
|
---|
| 222 |
|
---|
| 223 | //---------------------------------------------------------------------------
|
---|
| 224 |
|
---|
[71648c2] | 225 | class Rho: public TObject
|
---|
| 226 | {
|
---|
| 227 | public:
|
---|
| 228 | Float_t Rho; // rho energy density
|
---|
[3b465ca] | 229 | Float_t Edges[2]; // pseudorapidity range edges
|
---|
[71648c2] | 230 |
|
---|
| 231 | ClassDef(Rho, 1)
|
---|
| 232 | };
|
---|
| 233 |
|
---|
| 234 | //---------------------------------------------------------------------------
|
---|
| 235 |
|
---|
[2e229c9] | 236 | class Weight: public TObject
|
---|
| 237 | {
|
---|
| 238 | public:
|
---|
| 239 | Float_t Weight; // weight for the event
|
---|
| 240 |
|
---|
| 241 | ClassDef(Weight, 1)
|
---|
| 242 | };
|
---|
| 243 |
|
---|
| 244 | //---------------------------------------------------------------------------
|
---|
| 245 |
|
---|
[d7d2da3] | 246 | class Photon: public SortableObject
|
---|
| 247 | {
|
---|
| 248 | public:
|
---|
| 249 |
|
---|
| 250 | Float_t PT; // photon transverse momentum
|
---|
| 251 | Float_t Eta; // photon pseudorapidity
|
---|
| 252 | Float_t Phi; // photon azimuthal angle
|
---|
| 253 |
|
---|
| 254 | Float_t E; // photon energy
|
---|
[da00c35] | 255 |
|
---|
| 256 | Float_t T; //particle arrival time of flight
|
---|
| 257 |
|
---|
[d7d2da3] | 258 | Float_t EhadOverEem; // ratio of the hadronic versus electromagnetic energy deposited in the calorimeter
|
---|
| 259 |
|
---|
| 260 | TRefArray Particles; // references to generated particles
|
---|
| 261 |
|
---|
[b62c2da] | 262 | // Isolation variables
|
---|
[edf10ba] | 263 |
|
---|
[b62c2da] | 264 | Float_t IsolationVar;
|
---|
| 265 | Float_t IsolationVarRhoCorr;
|
---|
| 266 | Float_t SumPtCharged;
|
---|
| 267 | Float_t SumPtNeutral;
|
---|
| 268 | Float_t SumPtChargedPU;
|
---|
| 269 | Float_t SumPt;
|
---|
| 270 |
|
---|
[d7d2da3] | 271 | static CompBase *fgCompare; //!
|
---|
| 272 | const CompBase *GetCompare() const { return fgCompare; }
|
---|
| 273 |
|
---|
[2b3ef28] | 274 | TLorentzVector P4() const;
|
---|
[d7d2da3] | 275 |
|
---|
[eb52a5d] | 276 | ClassDef(Photon, 3)
|
---|
[d7d2da3] | 277 | };
|
---|
| 278 |
|
---|
| 279 | //---------------------------------------------------------------------------
|
---|
| 280 |
|
---|
| 281 | class Electron: public SortableObject
|
---|
| 282 | {
|
---|
| 283 | public:
|
---|
| 284 |
|
---|
| 285 | Float_t PT; // electron transverse momentum
|
---|
| 286 | Float_t Eta; // electron pseudorapidity
|
---|
| 287 | Float_t Phi; // electron azimuthal angle
|
---|
[da00c35] | 288 |
|
---|
| 289 | Float_t T; //particle arrival time of flight
|
---|
| 290 |
|
---|
[d7d2da3] | 291 | Int_t Charge; // electron charge
|
---|
| 292 |
|
---|
| 293 | Float_t EhadOverEem; // ratio of the hadronic versus electromagnetic energy deposited in the calorimeter
|
---|
| 294 |
|
---|
| 295 | TRef Particle; // reference to generated particle
|
---|
| 296 |
|
---|
[b62c2da] | 297 | // Isolation variables
|
---|
[edf10ba] | 298 |
|
---|
[b62c2da] | 299 | Float_t IsolationVar;
|
---|
| 300 | Float_t IsolationVarRhoCorr;
|
---|
| 301 | Float_t SumPtCharged;
|
---|
| 302 | Float_t SumPtNeutral;
|
---|
| 303 | Float_t SumPtChargedPU;
|
---|
| 304 | Float_t SumPt;
|
---|
| 305 |
|
---|
[d7d2da3] | 306 | static CompBase *fgCompare; //!
|
---|
| 307 | const CompBase *GetCompare() const { return fgCompare; }
|
---|
| 308 |
|
---|
[2b3ef28] | 309 | TLorentzVector P4() const;
|
---|
[d7d2da3] | 310 |
|
---|
[eb52a5d] | 311 | ClassDef(Electron, 3)
|
---|
[d7d2da3] | 312 | };
|
---|
| 313 |
|
---|
| 314 | //---------------------------------------------------------------------------
|
---|
| 315 |
|
---|
| 316 | class Muon: public SortableObject
|
---|
| 317 | {
|
---|
| 318 | public:
|
---|
| 319 |
|
---|
| 320 | Float_t PT; // muon transverse momentum
|
---|
| 321 | Float_t Eta; // muon pseudorapidity
|
---|
| 322 | Float_t Phi; // muon azimuthal angle
|
---|
| 323 |
|
---|
[da00c35] | 324 | Float_t T; //particle arrival time of flight
|
---|
| 325 |
|
---|
[d7d2da3] | 326 | Int_t Charge; // muon charge
|
---|
| 327 |
|
---|
| 328 | TRef Particle; // reference to generated particle
|
---|
| 329 |
|
---|
[b62c2da] | 330 | // Isolation variables
|
---|
[edf10ba] | 331 |
|
---|
[b62c2da] | 332 | Float_t IsolationVar;
|
---|
| 333 | Float_t IsolationVarRhoCorr;
|
---|
| 334 | Float_t SumPtCharged;
|
---|
| 335 | Float_t SumPtNeutral;
|
---|
| 336 | Float_t SumPtChargedPU;
|
---|
| 337 | Float_t SumPt;
|
---|
| 338 |
|
---|
[d7d2da3] | 339 | static CompBase *fgCompare; //!
|
---|
| 340 | const CompBase *GetCompare() const { return fgCompare; }
|
---|
| 341 |
|
---|
[2b3ef28] | 342 | TLorentzVector P4() const;
|
---|
[d7d2da3] | 343 |
|
---|
[eb52a5d] | 344 | ClassDef(Muon, 3)
|
---|
[d7d2da3] | 345 | };
|
---|
| 346 |
|
---|
| 347 | //---------------------------------------------------------------------------
|
---|
| 348 |
|
---|
| 349 | class Jet: public SortableObject
|
---|
| 350 | {
|
---|
| 351 | public:
|
---|
| 352 |
|
---|
| 353 | Float_t PT; // jet transverse momentum
|
---|
| 354 | Float_t Eta; // jet pseudorapidity
|
---|
| 355 | Float_t Phi; // jet azimuthal angle
|
---|
| 356 |
|
---|
[da00c35] | 357 | Float_t T; //particle arrival time of flight
|
---|
| 358 |
|
---|
[d7d2da3] | 359 | Float_t Mass; // jet invariant mass
|
---|
| 360 |
|
---|
| 361 | Float_t DeltaEta; // jet radius in pseudorapidity
|
---|
| 362 | Float_t DeltaPhi; // jet radius in azimuthal angle
|
---|
| 363 |
|
---|
[fe0273c] | 364 | UInt_t Flavor;
|
---|
| 365 | UInt_t FlavorAlgo;
|
---|
| 366 | UInt_t FlavorPhys;
|
---|
[edf10ba] | 367 |
|
---|
[fe0273c] | 368 | UInt_t BTag; // 0 or 1 for a jet that has been tagged as containing a heavy quark
|
---|
[edf10ba] | 369 | UInt_t BTagAlgo;
|
---|
[fe0273c] | 370 | UInt_t BTagPhys;
|
---|
[edf10ba] | 371 |
|
---|
[264bf40] | 372 | UInt_t TauTag; // 0 or 1 for a jet that has been tagged as a tau
|
---|
[d7d2da3] | 373 |
|
---|
| 374 | Int_t Charge; // tau charge
|
---|
| 375 |
|
---|
| 376 | Float_t EhadOverEem; // ratio of the hadronic versus electromagnetic energy deposited in the calorimeter
|
---|
| 377 |
|
---|
[edf10ba] | 378 | Int_t NCharged; // number of charged constituents
|
---|
| 379 | Int_t NNeutrals; // number of neutral constituents
|
---|
| 380 | Float_t Beta; // (sum pt of charged pile-up constituents)/(sum pt of charged constituents)
|
---|
| 381 | Float_t BetaStar; // (sum pt of charged constituents coming from hard interaction)/(sum pt of charged constituents)
|
---|
| 382 | Float_t MeanSqDeltaR; // average distance (squared) between constituent and jet weighted by pt (squared) of constituent
|
---|
| 383 | Float_t PTD; // average pt between constituent and jet weighted by pt of constituent
|
---|
| 384 | Float_t FracPt[5]; // (sum pt of constituents within a ring 0.1*i < DeltaR < 0.1*(i+1))/(sum pt of constituents)
|
---|
[63178fb] | 385 |
|
---|
[666d795] | 386 | Float_t Tau[5]; // N-subjettiness
|
---|
[edf10ba] | 387 |
|
---|
| 388 | TLorentzVector TrimmedP4[5]; // first entry (i = 0) is the total Trimmed Jet 4-momenta and from i = 1 to 4 are the trimmed subjets 4-momenta
|
---|
| 389 | TLorentzVector PrunedP4[5]; // first entry (i = 0) is the total Pruned Jet 4-momenta and from i = 1 to 4 are the pruned subjets 4-momenta
|
---|
| 390 | TLorentzVector SoftDroppedP4[5]; // first entry (i = 0) is the total SoftDropped Jet 4-momenta and from i = 1 to 4 are the pruned subjets 4-momenta
|
---|
| 391 |
|
---|
| 392 | Int_t NSubJetsTrimmed; // number of subjets trimmed
|
---|
| 393 | Int_t NSubJetsPruned; // number of subjets pruned
|
---|
| 394 | Int_t NSubJetsSoftDropped; // number of subjets soft-dropped
|
---|
| 395 |
|
---|
[e4c3fef] | 396 | TRefArray Constituents; // references to constituents
|
---|
| 397 | TRefArray Particles; // references to generated particles
|
---|
| 398 |
|
---|
| 399 | static CompBase *fgCompare; //!
|
---|
| 400 | const CompBase *GetCompare() const { return fgCompare; }
|
---|
| 401 |
|
---|
[8707eeb] | 402 | TLorentzVector P4() const;
|
---|
[ba1f1ee] | 403 | TLorentzVector Area;
|
---|
[24d005f] | 404 |
|
---|
[666d795] | 405 | ClassDef(Jet, 3)
|
---|
[d7d2da3] | 406 | };
|
---|
| 407 |
|
---|
| 408 | //---------------------------------------------------------------------------
|
---|
| 409 |
|
---|
[3b465ca] | 410 | class Track: public SortableObject
|
---|
[d7d2da3] | 411 | {
|
---|
[3b465ca] | 412 | public:
|
---|
[d7d2da3] | 413 | Int_t PID; // HEP ID number
|
---|
| 414 |
|
---|
| 415 | Int_t Charge; // track charge
|
---|
| 416 |
|
---|
| 417 | Float_t Eta; // track pseudorapidity
|
---|
[acd0621] | 418 |
|
---|
[d7d2da3] | 419 | Float_t EtaOuter; // track pseudorapidity at the tracker edge
|
---|
| 420 | Float_t PhiOuter; // track azimuthal angle at the tracker edge
|
---|
| 421 |
|
---|
| 422 | Float_t X; // track vertex position (x component)
|
---|
| 423 | Float_t Y; // track vertex position (y component)
|
---|
| 424 | Float_t Z; // track vertex position (z component)
|
---|
[22dc7fd] | 425 | Float_t T; // track vertex position (z component)
|
---|
[d7d2da3] | 426 |
|
---|
| 427 | Float_t XOuter; // track position (x component) at the tracker edge
|
---|
| 428 | Float_t YOuter; // track position (y component) at the tracker edge
|
---|
| 429 | Float_t ZOuter; // track position (z component) at the tracker edge
|
---|
[22dc7fd] | 430 | Float_t TOuter; // track position (z component) at the tracker edge
|
---|
[e4c3fef] | 431 |
|
---|
[acd0621] | 432 | Float_t L; // track path length
|
---|
[28c722a] | 433 | Float_t ErrorT; // error on the time measurement
|
---|
| 434 |
|
---|
[80306e6] | 435 | Float_t D0; // track signed transverse impact parameter
|
---|
| 436 | Float_t ErrorD0; // signed error on the track signed transverse impact parameter
|
---|
[acd0621] | 437 |
|
---|
| 438 | Float_t DZ; // track transverse momentum
|
---|
| 439 | Float_t ErrorDZ; // track transverse momentum error
|
---|
| 440 |
|
---|
| 441 | Float_t P; // track transverse momentum
|
---|
| 442 | Float_t ErrorP; // track transverse momentum error
|
---|
| 443 |
|
---|
| 444 | Float_t PT; // track transverse momentum
|
---|
| 445 | Float_t ErrorPT; // track transverse momentum error
|
---|
| 446 |
|
---|
| 447 | Float_t CtgTheta; // track transverse momentum
|
---|
| 448 | Float_t ErrorCtgTheta; // track transverse momentum error
|
---|
| 449 |
|
---|
| 450 | Float_t Phi; // track azimuthal angle
|
---|
| 451 | Float_t ErrorPhi; // track azimuthal angle
|
---|
| 452 |
|
---|
[a0431dc] | 453 | Float_t Xd; // X coordinate of point of closest approach to vertex
|
---|
| 454 | Float_t Yd; // Y coordinate of point of closest approach to vertex
|
---|
| 455 | Float_t Zd; // Z coordinate of point of closest approach to vertex
|
---|
[d7d2da3] | 456 |
|
---|
| 457 | TRef Particle; // reference to generated particle
|
---|
| 458 |
|
---|
[2600216] | 459 | Int_t VertexIndex; // reference to vertex
|
---|
| 460 |
|
---|
[d7d2da3] | 461 | static CompBase *fgCompare; //!
|
---|
| 462 | const CompBase *GetCompare() const { return fgCompare; }
|
---|
| 463 |
|
---|
[2b3ef28] | 464 | TLorentzVector P4() const;
|
---|
[d7d2da3] | 465 |
|
---|
[e4c3fef] | 466 | ClassDef(Track, 2)
|
---|
[d7d2da3] | 467 | };
|
---|
| 468 |
|
---|
| 469 | //---------------------------------------------------------------------------
|
---|
| 470 |
|
---|
[3b465ca] | 471 | class Tower: public SortableObject
|
---|
[d7d2da3] | 472 | {
|
---|
| 473 | public:
|
---|
| 474 | Float_t ET; // calorimeter tower transverse energy
|
---|
| 475 | Float_t Eta; // calorimeter tower pseudorapidity
|
---|
| 476 | Float_t Phi; // calorimeter tower azimuthal angle
|
---|
| 477 |
|
---|
| 478 | Float_t E; // calorimeter tower energy
|
---|
| 479 |
|
---|
[3db5282] | 480 | Float_t T; // ecal deposit time, averaged by sqrt(EM energy) over all particles, not smeared
|
---|
[839deb7] | 481 | Int_t NTimeHits; // number of hits contributing to time measurement
|
---|
[edf10ba] | 482 |
|
---|
[d7d2da3] | 483 | Float_t Eem; // calorimeter tower electromagnetic energy
|
---|
| 484 | Float_t Ehad; // calorimeter tower hadronic energy
|
---|
| 485 |
|
---|
| 486 | Float_t Edges[4]; // calorimeter tower edges
|
---|
| 487 |
|
---|
| 488 | TRefArray Particles; // references to generated particles
|
---|
| 489 |
|
---|
| 490 | static CompBase *fgCompare; //!
|
---|
| 491 | const CompBase *GetCompare() const { return fgCompare; }
|
---|
| 492 |
|
---|
[2b3ef28] | 493 | TLorentzVector P4() const;
|
---|
[d7d2da3] | 494 |
|
---|
[eb52a5d] | 495 | ClassDef(Tower, 2)
|
---|
[d7d2da3] | 496 | };
|
---|
| 497 |
|
---|
| 498 | //---------------------------------------------------------------------------
|
---|
| 499 |
|
---|
[8f7db23] | 500 | class HectorHit: public SortableObject
|
---|
| 501 | {
|
---|
| 502 | public:
|
---|
| 503 | Float_t E; // reconstructed energy [GeV]
|
---|
| 504 |
|
---|
| 505 | Float_t Tx; // angle of the momentum in the horizontal (x,z) plane [urad]
|
---|
| 506 | Float_t Ty; // angle of the momentum in the verical (y,z) plane [urad]
|
---|
| 507 |
|
---|
| 508 | Float_t T; // time of flight to the detector [s]
|
---|
| 509 |
|
---|
| 510 | Float_t X; // horizontal distance to the beam [um]
|
---|
| 511 | Float_t Y; // vertical distance to the beam [um]
|
---|
| 512 | Float_t S; // distance to the interaction point [m]
|
---|
| 513 |
|
---|
[64a4950] | 514 | TRef Particle; // reference to generated particle
|
---|
| 515 |
|
---|
[8f7db23] | 516 | static CompBase *fgCompare; //!
|
---|
| 517 | const CompBase *GetCompare() const { return fgCompare; }
|
---|
| 518 |
|
---|
| 519 | ClassDef(HectorHit, 1)
|
---|
| 520 | };
|
---|
| 521 |
|
---|
| 522 | //---------------------------------------------------------------------------
|
---|
| 523 |
|
---|
[3b465ca] | 524 | class Candidate: public SortableObject
|
---|
[d7d2da3] | 525 | {
|
---|
| 526 | friend class DelphesFactory;
|
---|
| 527 |
|
---|
| 528 | public:
|
---|
| 529 | Candidate();
|
---|
| 530 |
|
---|
| 531 | Int_t PID;
|
---|
| 532 |
|
---|
| 533 | Int_t Status;
|
---|
| 534 | Int_t M1, M2, D1, D2;
|
---|
| 535 |
|
---|
| 536 | Int_t Charge;
|
---|
| 537 |
|
---|
| 538 | Float_t Mass;
|
---|
[3b465ca] | 539 |
|
---|
[d7d2da3] | 540 | Int_t IsPU;
|
---|
[b62c2da] | 541 | Int_t IsRecoPU;
|
---|
[edf10ba] | 542 |
|
---|
[d7d2da3] | 543 | Int_t IsConstituent;
|
---|
[839deb7] | 544 |
|
---|
[5d2481f] | 545 | Int_t IsFromConversion;
|
---|
[839deb7] | 546 |
|
---|
[fe0273c] | 547 | UInt_t Flavor;
|
---|
| 548 | UInt_t FlavorAlgo;
|
---|
| 549 | UInt_t FlavorPhys;
|
---|
[edf10ba] | 550 |
|
---|
[fe0273c] | 551 | UInt_t BTag;
|
---|
[edf10ba] | 552 | UInt_t BTagAlgo;
|
---|
[fe0273c] | 553 | UInt_t BTagPhys;
|
---|
[edf10ba] | 554 |
|
---|
[264bf40] | 555 | UInt_t TauTag;
|
---|
[d7d2da3] | 556 |
|
---|
| 557 | Float_t Eem;
|
---|
| 558 | Float_t Ehad;
|
---|
| 559 |
|
---|
| 560 | Float_t Edges[4];
|
---|
| 561 | Float_t DeltaEta;
|
---|
| 562 | Float_t DeltaPhi;
|
---|
| 563 |
|
---|
[0e2f49b] | 564 | TLorentzVector Momentum, Position, InitialPosition, PositionError, Area;
|
---|
[80306e6] | 565 |
|
---|
| 566 | Float_t L; // path length
|
---|
[28c722a] | 567 | Float_t ErrorT; // path length
|
---|
[80306e6] | 568 | Float_t D0;
|
---|
| 569 | Float_t ErrorD0;
|
---|
| 570 | Float_t DZ;
|
---|
| 571 | Float_t ErrorDZ;
|
---|
| 572 | Float_t P;
|
---|
| 573 | Float_t ErrorP;
|
---|
| 574 | Float_t PT;
|
---|
| 575 | Float_t ErrorPT;
|
---|
| 576 | Float_t CtgTheta;
|
---|
| 577 | Float_t ErrorCtgTheta;
|
---|
| 578 | Float_t Phi;
|
---|
| 579 | Float_t ErrorPhi;
|
---|
[e4c3fef] | 580 |
|
---|
[839deb7] | 581 | Float_t Xd;
|
---|
| 582 | Float_t Yd;
|
---|
| 583 | Float_t Zd;
|
---|
[d7d2da3] | 584 |
|
---|
[a98c7ef] | 585 | // tracking resolution
|
---|
| 586 |
|
---|
| 587 | Float_t TrackResolution;
|
---|
| 588 |
|
---|
[da00c35] | 589 | // PileUpJetID variables
|
---|
| 590 |
|
---|
[839deb7] | 591 | Int_t NCharged;
|
---|
| 592 | Int_t NNeutrals;
|
---|
| 593 | Float_t Beta;
|
---|
| 594 | Float_t BetaStar;
|
---|
| 595 | Float_t MeanSqDeltaR;
|
---|
| 596 | Float_t PTD;
|
---|
| 597 | Float_t FracPt[5];
|
---|
[edf10ba] | 598 |
|
---|
[839deb7] | 599 | // Timing information
|
---|
[edf10ba] | 600 |
|
---|
[839deb7] | 601 | Int_t NTimeHits;
|
---|
| 602 | std::vector< std::pair< Float_t, Float_t > > ECalEnergyTimePairs;
|
---|
[e4c3fef] | 603 |
|
---|
[b62c2da] | 604 | // Isolation variables
|
---|
[edf10ba] | 605 |
|
---|
[b62c2da] | 606 | Float_t IsolationVar;
|
---|
| 607 | Float_t IsolationVarRhoCorr;
|
---|
| 608 | Float_t SumPtCharged;
|
---|
| 609 | Float_t SumPtNeutral;
|
---|
| 610 | Float_t SumPtChargedPU;
|
---|
| 611 | Float_t SumPt;
|
---|
| 612 |
|
---|
[0e2f49b] | 613 | // vertex variables
|
---|
| 614 |
|
---|
| 615 | Int_t ClusterIndex;
|
---|
| 616 | Int_t ClusterNDF;
|
---|
| 617 | Double_t ClusterSigma;
|
---|
| 618 | Double_t SumPT2;
|
---|
| 619 | Double_t BTVSumPT2;
|
---|
| 620 | Double_t GenDeltaZ;
|
---|
| 621 | Double_t GenSumPT2;
|
---|
| 622 |
|
---|
[63178fb] | 623 | // N-subjettiness variables
|
---|
[e4c3fef] | 624 |
|
---|
| 625 | Float_t Tau[5];
|
---|
[edf10ba] | 626 |
|
---|
[de6d698] | 627 | // Other Substructure variables
|
---|
[edf10ba] | 628 |
|
---|
| 629 | TLorentzVector TrimmedP4[5]; // first entry (i = 0) is the total Trimmed Jet 4-momenta and from i = 1 to 4 are the trimmed subjets 4-momenta
|
---|
| 630 | TLorentzVector PrunedP4[5]; // first entry (i = 0) is the total Pruned Jet 4-momenta and from i = 1 to 4 are the pruned subjets 4-momenta
|
---|
| 631 | TLorentzVector SoftDroppedP4[5]; // first entry (i = 0) is the total SoftDropped Jet 4-momenta and from i = 1 to 4 are the pruned subjets 4-momenta
|
---|
| 632 |
|
---|
| 633 | Int_t NSubJetsTrimmed; // number of subjets trimmed
|
---|
| 634 | Int_t NSubJetsPruned; // number of subjets pruned
|
---|
| 635 | Int_t NSubJetsSoftDropped; // number of subjets soft-dropped
|
---|
[de6d698] | 636 |
|
---|
[e4c3fef] | 637 |
|
---|
[d7d2da3] | 638 | static CompBase *fgCompare; //!
|
---|
| 639 | const CompBase *GetCompare() const { return fgCompare; }
|
---|
| 640 |
|
---|
| 641 | void AddCandidate(Candidate *object);
|
---|
| 642 | TObjArray *GetCandidates();
|
---|
| 643 |
|
---|
| 644 | Bool_t Overlaps(const Candidate *object) const;
|
---|
| 645 |
|
---|
| 646 | virtual void Copy(TObject &object) const;
|
---|
| 647 | virtual TObject *Clone(const char *newname = "") const;
|
---|
[3b465ca] | 648 | virtual void Clear(Option_t* option = "");
|
---|
[d7d2da3] | 649 |
|
---|
| 650 | private:
|
---|
| 651 | DelphesFactory *fFactory; //!
|
---|
| 652 | TObjArray *fArray; //!
|
---|
[3b465ca] | 653 |
|
---|
[d7d2da3] | 654 | void SetFactory(DelphesFactory *factory) { fFactory = factory; }
|
---|
| 655 |
|
---|
[3c46e17] | 656 | ClassDef(Candidate, 5)
|
---|
[d7d2da3] | 657 | };
|
---|
| 658 |
|
---|
| 659 | #endif // DelphesClasses_h
|
---|
| 660 |
|
---|
| 661 |
|
---|