Fork me on GitHub

Changeset a98c7ef in git for classes


Ignore:
Timestamp:
Oct 1, 2015, 3:21:57 PM (9 years ago)
Author:
Michele Selvaggi <michele.selvaggi@…>
Branches:
ImprovedOutputFile, Timing, dual_readout, llp, master
Children:
fa7f333
Parents:
d77b51d
Message:

fixed eflow at high pt

Location:
classes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • classes/DelphesClasses.cc

    rd77b51d ra98c7ef  
    129129  Area(0.0, 0.0, 0.0, 0.0),
    130130  Dxy(0), SDxy(0), Xd(0), Yd(0), Zd(0),
     131  TrackResolution(0),
    131132  NCharged(0),
    132133  NNeutrals(0),
     
    267268  object.Yd = Yd;
    268269  object.Zd = Zd;
    269 
     270  object.TrackResolution = TrackResolution;
    270271  object.NCharged = NCharged;
    271272  object.NNeutrals = NNeutrals;
     
    368369  Yd = 0.0;
    369370  Zd = 0.0;
     371  TrackResolution = 0.0;
    370372  NCharged = 0;
    371373  NNeutrals = 0;
  • classes/DelphesClasses.h

    rd77b51d ra98c7ef  
    534534  Float_t Zd;
    535535
     536  // tracking resolution
     537 
     538  Float_t TrackResolution;
     539
    536540  // PileUpJetID variables
    537541
     
    591595  void SetFactory(DelphesFactory *factory) { fFactory = factory; }
    592596
    593   ClassDef(Candidate, 3)
     597  ClassDef(Candidate, 4)
    594598};
    595599
Note: See TracChangeset for help on using the changeset viewer.