Skip to content

Commit

Permalink
Apply code-format patch
Browse files Browse the repository at this point in the history
  • Loading branch information
nurfikri89 committed Mar 27, 2024
1 parent a801dbc commit 91f44aa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CommonTools/PileupAlgos/plugins/PuppiProducer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,8 @@ void PuppiProducer::produce(edm::Event& iEvent, const edm::EventSetup& iSetup) {
pReco.id = 1;
else if ((fUseDZ) && (std::abs(pReco.eta) >= fEtaMinUseDZ) && (std::abs(pDZ) < fDZCut))
pReco.id = 1;
else if (fUseFromPV2Recovery && lPack->fromPV() == (pat::PackedCandidate::PVTight) && (pReco.pt > fPtMinForFromPV2Recovery))
else if (fUseFromPV2Recovery && lPack->fromPV() == (pat::PackedCandidate::PVTight) &&
(pReco.pt > fPtMinForFromPV2Recovery))
pReco.id = 1;
else if ((fUseDZforPileup) && (std::abs(pReco.eta) >= fEtaMinUseDZ) && (std::abs(pDZ) >= fDZCut))
pReco.id = 2;
Expand Down

0 comments on commit 91f44aa

Please sign in to comment.