Fork me on GitHub

Changeset 914fb04 in git for classes


Ignore:
Timestamp:
Oct 1, 2015, 3:32:32 PM (9 years ago)
Author:
Michele Selvaggi <michele.selvaggi@…>
Branches:
ImprovedOutputFile, Timing, dual_readout, llp, master
Children:
c62695e
Parents:
122e1e5 (diff), fa7f333 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge pull request #16 from selvaggi/master

fixed eflow at high pt

Location:
classes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • classes/DelphesClasses.cc

    r122e1e5 r914fb04  
    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

    r122e1e5 r914fb04  
    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.