Skip to content

Commit

Permalink
apply code-checks
Browse files Browse the repository at this point in the history
  • Loading branch information
SanghyunKo committed Oct 17, 2024
1 parent 3f7ea82 commit d4762a9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions RecoEgamma/EgammaPhotonProducers/src/ReducedEGProducer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -697,12 +697,12 @@ void ReducedEGProducer::produce(edm::Event& event, const edm::EventSetup& eventS
for (const auto& superCluster : *scHandle) {
index++;

const double superclusPt = superCluster.energy()/std::cosh(superCluster.eta());
const double superclusPt = superCluster.energy() / std::cosh(superCluster.eta());

if ( superclusPt < scPtMin_ )
if (superclusPt < scPtMin_)
continue;

if ( std::abs(superCluster.eta()) > scAbsetaMax_ )
if (std::abs(superCluster.eta()) > scAbsetaMax_)
continue;

bool relinkSupercluster = superclusPt > relinkSuperclusterPtMin_;
Expand Down

0 comments on commit d4762a9

Please sign in to comment.