Skip to content

Commit

Permalink
Merge pull request cms-sw#25 from jhgoh/master
Browse files Browse the repository at this point in the history
bigfix : wrong jet eta cut sign
  • Loading branch information
jhgoh committed Jul 21, 2014
2 parents c7e81f7 + 7dcc169 commit 3751c65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RecoSelectorTools/plugins/KJetMetUncSelector.cc
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ bool KJetMetUncSelector::filter(edm::Event& event, const edm::EventSetup& eventS
}

// Check acceptance
if ( std::abs(jetEta) <= maxEta_ ) continue;
if ( std::abs(jetEta) > maxEta_ ) continue;
if ( jetPt*fJECDn*fJERDn < minPt_ ) continue;

cleanJets->push_back(jet);
Expand Down

0 comments on commit 3751c65

Please sign in to comment.