Changeset 0e0f211 in git
- Timestamp:
- May 10, 2018, 4:41:28 PM (7 years ago)
- Branches:
- ImprovedOutputFile, Timing, dual_readout, llp, master
- Children:
- 14436f6
- Parents:
- 3ad158a
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
classes/DelphesClasses.h
r3ad158a r0e0f211 275 275 Float_t SumPt; // isolation variable 276 276 277 Int_t Status; // 1: prompt -- 2: non prompt -- 3: fake 278 277 279 static CompBase *fgCompare; //! 278 280 const CompBase *GetCompare() const { return fgCompare; } … … 550 552 551 553 Int_t IsConstituent; 552 553 554 Int_t IsFromConversion; 554 555 -
modules/ModulesLinkDef.h
r3ad158a r0e0f211 57 57 #include "modules/TaggingParticlesSkimmer.h" 58 58 #include "modules/PileUpJetID.h" 59 #include "modules/PhotonID.h" 59 60 #include "modules/ConstituentFilter.h" 60 61 #include "modules/StatusPidFilter.h" … … 109 110 #pragma link C++ class TaggingParticlesSkimmer+; 110 111 #pragma link C++ class PileUpJetID+; 112 #pragma link C++ class PhotonID+; 111 113 #pragma link C++ class ConstituentFilter+; 112 114 #pragma link C++ class StatusPidFilter+; -
modules/TreeWriter.cc
r3ad158a r0e0f211 463 463 const TLorentzVector &position = candidate->Position; 464 464 465 466 465 pt = momentum.Pt(); 467 466 cosTheta = TMath::Abs(momentum.CosTheta()); … … 476 475 entry->PT = pt; 477 476 entry->E = momentum.E(); 478 479 477 entry->T = position.T()*1.0E-3/c_light; 480 478 … … 489 487 490 488 entry->EhadOverEem = candidate->Eem > 0.0 ? candidate->Ehad/candidate->Eem : 999.9; 489 490 // 1: prompt -- 2: non prompt -- 3: fake 491 entry->Status = candidate->Status; 491 492 492 493 FillParticles(candidate, &entry->Particles);
Note:
See TracChangeset
for help on using the changeset viewer.