Skip to content

Commit

Permalink
Aligning indents
Browse files Browse the repository at this point in the history
  • Loading branch information
rappoccio committed Sep 19, 2017
1 parent b5c0e8e commit 8a1e174
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions RecoJets/JetProducers/plugins/ECFAdder.cc
Expand Up @@ -123,9 +123,13 @@ float ECFAdder::getECF(unsigned index, const edm::Ptr<reco::Jet> & object) const
edm::LogWarning("MissingJetConstituent") << "Jet constituent required for ECF computation is missing!";
}
if ( FJparticles.size() > Njets_[index] )
return routine_[index]->result(join(FJparticles));
{
return routine_[index]->result(join(FJparticles));
}
else
return -1.0;
{
return -1.0;
}
}


Expand Down

0 comments on commit 8a1e174

Please sign in to comment.