Fork me on GitHub

Changeset b62c2da in git for classes/DelphesClasses.cc


Ignore:
Timestamp:
Jan 26, 2015, 2:57:46 PM (10 years ago)
Author:
Michele Selvaggi <michele.selvaggi@…>
Branches:
ImprovedOutputFile, Timing, dual_readout, llp, master
Children:
2d494a6
Parents:
7f9ae0a
Message:

added isolation variables to Candidate and Electrons, Muons, Photons classes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • classes/DelphesClasses.cc

    r7f9ae0a rb62c2da  
    120120  PID(0), Status(0), M1(-1), M2(-1), D1(-1), D2(-1),
    121121  Charge(0), Mass(0.0),
    122   IsPU(0), IsConstituent(0),
     122  IsPU(0), IsRecoPU(0), IsConstituent(0),
    123123  BTag(0), TauTag(0), Eem(0.0), Ehad(0.0),
    124124  DeltaEta(0.0), DeltaPhi(0.0),
     
    133133  MeanSqDeltaR(0),
    134134  PTD(0),
     135  IsolationVar(-999),
     136  IsolationVarRhoCorr(-999),
     137  SumPtCharged(-999),
     138  SumPtNeutral(-999),
     139  SumPtChargedPU(-999),
     140  SumPt(-999),
    135141  fFactory(0),
    136142  fArray(0)
     
    249255  object.MeanSqDeltaR = MeanSqDeltaR;
    250256  object.PTD = PTD;
     257 
     258  object.IsolationVar = IsolationVar;
     259  object.IsolationVarRhoCorr = IsolationVarRhoCorr;
     260  object.SumPtCharged = SumPtCharged;
     261  object.SumPtNeutral = SumPtNeutral;
     262  object.SumPtChargedPU = SumPtChargedPU;
     263  object.SumPt = SumPt;
     264
    251265  object.FracPt[0] = FracPt[0];
    252266  object.FracPt[1] = FracPt[1];
     
    311325  MeanSqDeltaR = 0.0;
    312326  PTD = 0.0;
     327 
     328  IsolationVar = -999;
     329  IsolationVarRhoCorr = -999;
     330  SumPtCharged = -999;
     331  SumPtNeutral = -999;
     332  SumPtChargedPU = -999;
     333  SumPt = -999;
     334 
    313335  FracPt[0] = 0.0;
    314336  FracPt[1] = 0.0;
Note: See TracChangeset for help on using the changeset viewer.