Skip to content

Commit

Permalink
fix a typo for the EGammaCand isolation
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugues committed Nov 14, 2014
1 parent 8387cb2 commit dc29ac0
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -88,7 +88,7 @@ template<>
bool HLTEcalPFClusterIsolationProducer<reco::RecoEcalCandidate>::computedRVeto(T1Ref candRef, reco::PFClusterRef pfclu) {

float dR2 = deltaR2(candRef->eta(), candRef->phi(), pfclu->eta(), pfclu->phi());
if(dR2 < drVeto2_)
if(dR2 > (drMax_*drMax_))
return false;

if (candRef->superCluster().isNonnull()) {
Expand Down

0 comments on commit dc29ac0

Please sign in to comment.