Fork me on GitHub

source: git/classes/DelphesClasses.h@ 28c722a

ImprovedOutputFile Timing dual_readout llp
Last change on this file since 28c722a was 28c722a, checked in by Michele Selvaggi <michele.selvaggi@…>, 8 years ago

store time smearing error

  • Property mode set to 100644
File size: 17.5 KB
RevLine 
[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
41class DelphesFactory;
42
43//---------------------------------------------------------------------------
44
45class Event: public TObject
46{
47public:
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
59class LHCOEvent: public Event
60{
61public:
62
63 Int_t Trigger; // trigger word
64
65 ClassDef(LHCOEvent, 1)
66};
67
68//---------------------------------------------------------------------------
69
70class LHEFEvent: public Event
71{
72public:
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]86class LHEFWeight: public TObject
87{
88public:
89 Int_t ID; // weight ID
90 Float_t Weight; // weight value
91
92 ClassDef(LHEFWeight, 1)
93};
94
95//---------------------------------------------------------------------------
96
[d7d2da3]97class HepMCEvent: public Event
98{
99public:
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
126class GenParticle: public SortableObject
127{
128public:
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
[d07e957]173class Vertex: public TObject
174{
175public:
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
193 ClassDef(Vertex, 2)
[d07e957]194};
195
196//---------------------------------------------------------------------------
197
[d7d2da3]198class MissingET: public TObject
199{
200public:
201 Float_t MET; // mising transverse energy
[4ad7b96]202 Float_t Eta; // mising energy pseudorapidity
[d7d2da3]203 Float_t Phi; // mising energy azimuthal angle
204
[2b3ef28]205 TLorentzVector P4() const;
[4ad7b96]206
[d7d2da3]207 ClassDef(MissingET, 1)
208};
209
210//---------------------------------------------------------------------------
211
212class ScalarHT: public TObject
213{
214public:
215 Float_t HT; // scalar sum of transverse momenta
216
217 ClassDef(ScalarHT, 1)
218};
219
220//---------------------------------------------------------------------------
221
[71648c2]222class Rho: public TObject
223{
224public:
225 Float_t Rho; // rho energy density
[3b465ca]226 Float_t Edges[2]; // pseudorapidity range edges
[71648c2]227
228 ClassDef(Rho, 1)
229};
230
231//---------------------------------------------------------------------------
232
[2e229c9]233class Weight: public TObject
234{
235public:
236 Float_t Weight; // weight for the event
237
238 ClassDef(Weight, 1)
239};
240
241//---------------------------------------------------------------------------
242
[d7d2da3]243class Photon: public SortableObject
244{
245public:
246
247 Float_t PT; // photon transverse momentum
248 Float_t Eta; // photon pseudorapidity
249 Float_t Phi; // photon azimuthal angle
250
251 Float_t E; // photon energy
[da00c35]252
253 Float_t T; //particle arrival time of flight
254
[d7d2da3]255 Float_t EhadOverEem; // ratio of the hadronic versus electromagnetic energy deposited in the calorimeter
256
257 TRefArray Particles; // references to generated particles
258
[b62c2da]259 // Isolation variables
[edf10ba]260
[b62c2da]261 Float_t IsolationVar;
262 Float_t IsolationVarRhoCorr;
263 Float_t SumPtCharged;
264 Float_t SumPtNeutral;
265 Float_t SumPtChargedPU;
266 Float_t SumPt;
267
[d7d2da3]268 static CompBase *fgCompare; //!
269 const CompBase *GetCompare() const { return fgCompare; }
270
[2b3ef28]271 TLorentzVector P4() const;
[d7d2da3]272
[eb52a5d]273 ClassDef(Photon, 3)
[d7d2da3]274};
275
276//---------------------------------------------------------------------------
277
278class Electron: public SortableObject
279{
280public:
281
282 Float_t PT; // electron transverse momentum
283 Float_t Eta; // electron pseudorapidity
284 Float_t Phi; // electron azimuthal angle
[da00c35]285
286 Float_t T; //particle arrival time of flight
287
[d7d2da3]288 Int_t Charge; // electron charge
289
290 Float_t EhadOverEem; // ratio of the hadronic versus electromagnetic energy deposited in the calorimeter
291
292 TRef Particle; // reference to generated particle
293
[b62c2da]294 // Isolation variables
[edf10ba]295
[b62c2da]296 Float_t IsolationVar;
297 Float_t IsolationVarRhoCorr;
298 Float_t SumPtCharged;
299 Float_t SumPtNeutral;
300 Float_t SumPtChargedPU;
301 Float_t SumPt;
302
[d7d2da3]303 static CompBase *fgCompare; //!
304 const CompBase *GetCompare() const { return fgCompare; }
305
[2b3ef28]306 TLorentzVector P4() const;
[d7d2da3]307
[eb52a5d]308 ClassDef(Electron, 3)
[d7d2da3]309};
310
311//---------------------------------------------------------------------------
312
313class Muon: public SortableObject
314{
315public:
316
317 Float_t PT; // muon transverse momentum
318 Float_t Eta; // muon pseudorapidity
319 Float_t Phi; // muon azimuthal angle
320
[da00c35]321 Float_t T; //particle arrival time of flight
322
[d7d2da3]323 Int_t Charge; // muon charge
324
325 TRef Particle; // reference to generated particle
326
[b62c2da]327 // Isolation variables
[edf10ba]328
[b62c2da]329 Float_t IsolationVar;
330 Float_t IsolationVarRhoCorr;
331 Float_t SumPtCharged;
332 Float_t SumPtNeutral;
333 Float_t SumPtChargedPU;
334 Float_t SumPt;
335
[d7d2da3]336 static CompBase *fgCompare; //!
337 const CompBase *GetCompare() const { return fgCompare; }
338
[2b3ef28]339 TLorentzVector P4() const;
[d7d2da3]340
[eb52a5d]341 ClassDef(Muon, 3)
[d7d2da3]342};
343
344//---------------------------------------------------------------------------
345
346class Jet: public SortableObject
347{
348public:
349
350 Float_t PT; // jet transverse momentum
351 Float_t Eta; // jet pseudorapidity
352 Float_t Phi; // jet azimuthal angle
353
[da00c35]354 Float_t T; //particle arrival time of flight
355
[d7d2da3]356 Float_t Mass; // jet invariant mass
357
358 Float_t DeltaEta; // jet radius in pseudorapidity
359 Float_t DeltaPhi; // jet radius in azimuthal angle
360
[fe0273c]361 UInt_t Flavor;
362 UInt_t FlavorAlgo;
363 UInt_t FlavorPhys;
[edf10ba]364
[fe0273c]365 UInt_t BTag; // 0 or 1 for a jet that has been tagged as containing a heavy quark
[edf10ba]366 UInt_t BTagAlgo;
[fe0273c]367 UInt_t BTagPhys;
[edf10ba]368
[264bf40]369 UInt_t TauTag; // 0 or 1 for a jet that has been tagged as a tau
[d7d2da3]370
371 Int_t Charge; // tau charge
372
373 Float_t EhadOverEem; // ratio of the hadronic versus electromagnetic energy deposited in the calorimeter
374
[edf10ba]375 Int_t NCharged; // number of charged constituents
376 Int_t NNeutrals; // number of neutral constituents
377 Float_t Beta; // (sum pt of charged pile-up constituents)/(sum pt of charged constituents)
378 Float_t BetaStar; // (sum pt of charged constituents coming from hard interaction)/(sum pt of charged constituents)
379 Float_t MeanSqDeltaR; // average distance (squared) between constituent and jet weighted by pt (squared) of constituent
380 Float_t PTD; // average pt between constituent and jet weighted by pt of constituent
381 Float_t FracPt[5]; // (sum pt of constituents within a ring 0.1*i < DeltaR < 0.1*(i+1))/(sum pt of constituents)
[63178fb]382
[666d795]383 Float_t Tau[5]; // N-subjettiness
[edf10ba]384
385 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
386 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
387 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
388
389 Int_t NSubJetsTrimmed; // number of subjets trimmed
390 Int_t NSubJetsPruned; // number of subjets pruned
391 Int_t NSubJetsSoftDropped; // number of subjets soft-dropped
392
[e4c3fef]393 TRefArray Constituents; // references to constituents
394 TRefArray Particles; // references to generated particles
395
396 static CompBase *fgCompare; //!
397 const CompBase *GetCompare() const { return fgCompare; }
398
[8707eeb]399 TLorentzVector P4() const;
[ba1f1ee]400 TLorentzVector Area;
[24d005f]401
[666d795]402 ClassDef(Jet, 3)
[d7d2da3]403};
404
405//---------------------------------------------------------------------------
406
[3b465ca]407class Track: public SortableObject
[d7d2da3]408{
[3b465ca]409public:
[d7d2da3]410 Int_t PID; // HEP ID number
411
412 Int_t Charge; // track charge
413
414 Float_t Eta; // track pseudorapidity
[acd0621]415
[d7d2da3]416 Float_t EtaOuter; // track pseudorapidity at the tracker edge
417 Float_t PhiOuter; // track azimuthal angle at the tracker edge
418
419 Float_t X; // track vertex position (x component)
420 Float_t Y; // track vertex position (y component)
421 Float_t Z; // track vertex position (z component)
[22dc7fd]422 Float_t T; // track vertex position (z component)
[d7d2da3]423
424 Float_t XOuter; // track position (x component) at the tracker edge
425 Float_t YOuter; // track position (y component) at the tracker edge
426 Float_t ZOuter; // track position (z component) at the tracker edge
[22dc7fd]427 Float_t TOuter; // track position (z component) at the tracker edge
[e4c3fef]428
[acd0621]429 Float_t L; // track path length
[28c722a]430 Float_t ErrorT; // error on the time measurement
431
[80306e6]432 Float_t D0; // track signed transverse impact parameter
433 Float_t ErrorD0; // signed error on the track signed transverse impact parameter
[acd0621]434
435 Float_t DZ; // track transverse momentum
436 Float_t ErrorDZ; // track transverse momentum error
437
438 Float_t P; // track transverse momentum
439 Float_t ErrorP; // track transverse momentum error
440
441 Float_t PT; // track transverse momentum
442 Float_t ErrorPT; // track transverse momentum error
443
444 Float_t CtgTheta; // track transverse momentum
445 Float_t ErrorCtgTheta; // track transverse momentum error
446
447 Float_t Phi; // track azimuthal angle
448 Float_t ErrorPhi; // track azimuthal angle
449
[a0431dc]450 Float_t Xd; // X coordinate of point of closest approach to vertex
451 Float_t Yd; // Y coordinate of point of closest approach to vertex
452 Float_t Zd; // Z coordinate of point of closest approach to vertex
[d7d2da3]453
454 TRef Particle; // reference to generated particle
455
[2600216]456 Int_t VertexIndex; // reference to vertex
457
[d7d2da3]458 static CompBase *fgCompare; //!
459 const CompBase *GetCompare() const { return fgCompare; }
460
[2b3ef28]461 TLorentzVector P4() const;
[d7d2da3]462
[e4c3fef]463 ClassDef(Track, 2)
[d7d2da3]464};
465
466//---------------------------------------------------------------------------
467
[3b465ca]468class Tower: public SortableObject
[d7d2da3]469{
470public:
471 Float_t ET; // calorimeter tower transverse energy
472 Float_t Eta; // calorimeter tower pseudorapidity
473 Float_t Phi; // calorimeter tower azimuthal angle
474
475 Float_t E; // calorimeter tower energy
476
[3db5282]477 Float_t T; // ecal deposit time, averaged by sqrt(EM energy) over all particles, not smeared
[839deb7]478 Int_t NTimeHits; // number of hits contributing to time measurement
[edf10ba]479
[d7d2da3]480 Float_t Eem; // calorimeter tower electromagnetic energy
481 Float_t Ehad; // calorimeter tower hadronic energy
482
483 Float_t Edges[4]; // calorimeter tower edges
484
485 TRefArray Particles; // references to generated particles
486
487 static CompBase *fgCompare; //!
488 const CompBase *GetCompare() const { return fgCompare; }
489
[2b3ef28]490 TLorentzVector P4() const;
[d7d2da3]491
[eb52a5d]492 ClassDef(Tower, 2)
[d7d2da3]493};
494
495//---------------------------------------------------------------------------
496
[8f7db23]497class HectorHit: public SortableObject
498{
499public:
500 Float_t E; // reconstructed energy [GeV]
501
502 Float_t Tx; // angle of the momentum in the horizontal (x,z) plane [urad]
503 Float_t Ty; // angle of the momentum in the verical (y,z) plane [urad]
504
505 Float_t T; // time of flight to the detector [s]
506
507 Float_t X; // horizontal distance to the beam [um]
508 Float_t Y; // vertical distance to the beam [um]
509 Float_t S; // distance to the interaction point [m]
510
[64a4950]511 TRef Particle; // reference to generated particle
512
[8f7db23]513 static CompBase *fgCompare; //!
514 const CompBase *GetCompare() const { return fgCompare; }
515
516 ClassDef(HectorHit, 1)
517};
518
519//---------------------------------------------------------------------------
520
[3b465ca]521class Candidate: public SortableObject
[d7d2da3]522{
523 friend class DelphesFactory;
524
525public:
526 Candidate();
527
528 Int_t PID;
529
530 Int_t Status;
531 Int_t M1, M2, D1, D2;
532
533 Int_t Charge;
534
535 Float_t Mass;
[3b465ca]536
[d7d2da3]537 Int_t IsPU;
[b62c2da]538 Int_t IsRecoPU;
[edf10ba]539
[d7d2da3]540 Int_t IsConstituent;
[839deb7]541
[5d2481f]542 Int_t IsFromConversion;
[839deb7]543
[fe0273c]544 UInt_t Flavor;
545 UInt_t FlavorAlgo;
546 UInt_t FlavorPhys;
[edf10ba]547
[fe0273c]548 UInt_t BTag;
[edf10ba]549 UInt_t BTagAlgo;
[fe0273c]550 UInt_t BTagPhys;
[edf10ba]551
[264bf40]552 UInt_t TauTag;
[d7d2da3]553
554 Float_t Eem;
555 Float_t Ehad;
556
557 Float_t Edges[4];
558 Float_t DeltaEta;
559 Float_t DeltaPhi;
560
[0e2f49b]561 TLorentzVector Momentum, Position, InitialPosition, PositionError, Area;
[80306e6]562
563 Float_t L; // path length
[28c722a]564 Float_t ErrorT; // path length
[80306e6]565 Float_t D0;
566 Float_t ErrorD0;
567 Float_t DZ;
568 Float_t ErrorDZ;
569 Float_t P;
570 Float_t ErrorP;
571 Float_t PT;
572 Float_t ErrorPT;
573 Float_t CtgTheta;
574 Float_t ErrorCtgTheta;
575 Float_t Phi;
576 Float_t ErrorPhi;
[e4c3fef]577
[839deb7]578 Float_t Xd;
579 Float_t Yd;
580 Float_t Zd;
[d7d2da3]581
[a98c7ef]582 // tracking resolution
583
584 Float_t TrackResolution;
585
[da00c35]586 // PileUpJetID variables
587
[839deb7]588 Int_t NCharged;
589 Int_t NNeutrals;
590 Float_t Beta;
591 Float_t BetaStar;
592 Float_t MeanSqDeltaR;
593 Float_t PTD;
594 Float_t FracPt[5];
[edf10ba]595
[839deb7]596 // Timing information
[edf10ba]597
[839deb7]598 Int_t NTimeHits;
599 std::vector< std::pair< Float_t, Float_t > > ECalEnergyTimePairs;
[e4c3fef]600
[b62c2da]601 // Isolation variables
[edf10ba]602
[b62c2da]603 Float_t IsolationVar;
604 Float_t IsolationVarRhoCorr;
605 Float_t SumPtCharged;
606 Float_t SumPtNeutral;
607 Float_t SumPtChargedPU;
608 Float_t SumPt;
609
[0e2f49b]610 // vertex variables
611
612 Int_t ClusterIndex;
613 Int_t ClusterNDF;
614 Double_t ClusterSigma;
615 Double_t SumPT2;
616 Double_t BTVSumPT2;
617 Double_t GenDeltaZ;
618 Double_t GenSumPT2;
619
[63178fb]620 // N-subjettiness variables
[e4c3fef]621
622 Float_t Tau[5];
[edf10ba]623
[de6d698]624 // Other Substructure variables
[edf10ba]625
626 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
627 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
628 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
629
630 Int_t NSubJetsTrimmed; // number of subjets trimmed
631 Int_t NSubJetsPruned; // number of subjets pruned
632 Int_t NSubJetsSoftDropped; // number of subjets soft-dropped
[de6d698]633
[e4c3fef]634
[d7d2da3]635 static CompBase *fgCompare; //!
636 const CompBase *GetCompare() const { return fgCompare; }
637
638 void AddCandidate(Candidate *object);
639 TObjArray *GetCandidates();
640
641 Bool_t Overlaps(const Candidate *object) const;
642
643 virtual void Copy(TObject &object) const;
644 virtual TObject *Clone(const char *newname = "") const;
[3b465ca]645 virtual void Clear(Option_t* option = "");
[d7d2da3]646
647private:
648 DelphesFactory *fFactory; //!
649 TObjArray *fArray; //!
[3b465ca]650
[d7d2da3]651 void SetFactory(DelphesFactory *factory) { fFactory = factory; }
652
[a98c7ef]653 ClassDef(Candidate, 4)
[d7d2da3]654};
655
656#endif // DelphesClasses_h
657
658
Note: See TracBrowser for help on using the repository browser.