Skip to content

Commit

Permalink
Update HLTrigger/Egamma/plugins/HLTEgammaEtFilter.cc
Browse files Browse the repository at this point in the history
Will squash soon.

Co-authored-by: Marino Missiroli <[email protected]>
  • Loading branch information
arsahasransu and missirol authored Oct 20, 2022
1 parent 03a4989 commit 6deb033
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion HLTrigger/Egamma/plugins/HLTEgammaEtFilter.cc
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ bool HLTEgammaEtFilter::hltFilter(edm::Event& iEvent,
for (auto& recoecalcand : recoecalcands) {
ref = recoecalcand;

if ((ref->eta()) < minEtaCut_ || (ref->eta()) > maxEtaCut_)
if ((ref->eta() < minEtaCut_) or (ref->eta() > maxEtaCut_))
continue;

if ((fabs(ref->eta()) < 1.479 && ref->et() >= etcutEB_) || (fabs(ref->eta()) >= 1.479 && ref->et() >= etcutEE_)) {
Expand Down

0 comments on commit 6deb033

Please sign in to comment.