Fork me on GitHub

Changeset 4a93785 in git for modules


Ignore:
Timestamp:
Apr 27, 2015, 4:23:00 PM (9 years ago)
Author:
Michele Selvaggi <michele.selvaggi@…>
Branches:
ImprovedOutputFile, Timing, dual_readout, llp, master
Children:
95aa610
Parents:
486c4c3
Message:

Inverted eta check (#603)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • modules/TaggingParticlesSkimmer.cc

    r486c4c3 r4a93785  
    162162   
    163163    eta = TMath::Abs(candidate->Momentum.Eta());
    164     if(eta < fEtaMax) continue;
     164    if(eta > fEtaMax) continue;
    165165       
    166166    fOutputArray->Add(candidate);
Note: See TracChangeset for help on using the changeset viewer.