Fork me on GitHub

Changeset 79d4123 in git for modules


Ignore:
Timestamp:
Aug 26, 2016, 10:13:25 AM (8 years ago)
Author:
Michele Selvaggi <michele.selvaggi@…>
Branches:
ImprovedOutputFile, Timing, dual_readout, llp, master
Children:
4827699, eceb415
Parents:
bc58cf5
Message:

set maximum resolution at 100% in MomentumSmearing

File:
1 edited

Legend:

Unmodified
Added
Removed
  • modules/MomentumSmearing.cc

    rbc58cf5 r79d4123  
    9696{
    9797  Candidate *candidate, *mother;
    98   Double_t pt, eta, phi, e;
     98  Double_t pt, eta, phi, e, res;
    9999
    100100  fItInputArray->Reset();
     
    107107    pt = candidateMomentum.Pt();
    108108    e = candidateMomentum.E();
    109 
     109    res = fFormula->Eval(pt, eta, phi, e);
     110 
    110111    // apply smearing formula
    111112    //pt = gRandom->Gaus(pt, fFormula->Eval(pt, eta, phi, e) * pt);
    112     pt = LogNormal(pt, fFormula->Eval(pt, eta, phi, e) * pt );
     113   
     114    res = ( res > 1.0 ) ? 1.0 : res;
     115
     116    pt = LogNormal(pt, res * pt );
    113117   
    114118    //if(pt <= 0.0) continue;
Note: See TracChangeset for help on using the changeset viewer.