Skip to content

Commit e86773a

Browse files
committed
fixed clang format: 1 try
1 parent ffa4435 commit e86773a

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

PWGLF/Tasks/Nuspex/antinucleiInJets.cxx

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,7 @@ struct AntinucleiInJets {
611611
// jet pt must be larger than threshold
612612
auto jetForSub = jet;
613613
fastjet::PseudoJet jetMinusBkg = backgroundSub.doRhoAreaSub(jetForSub, rhoPerp, rhoMPerp);
614-
//if (getCorrectedPt(jetMinusBkg.pt(), responseMatrix) < minJetPt)
614+
// if (getCorrectedPt(jetMinusBkg.pt(), responseMatrix) < minJetPt)
615615
if (jetMinusBkg.pt() < minJetPt)
616616
continue;
617617
isAtLeastOneJetSelected = true;
@@ -1333,7 +1333,7 @@ struct AntinucleiInJets {
13331333
fastjet::PseudoJet jetMinusBkg = backgroundSub.doRhoAreaSub(jetForSub, rhoPerp, rhoMPerp);
13341334

13351335
// Apply jet pT threshold
1336-
//if (getCorrectedPt(jetMinusBkg.pt(), responseMatrix) < minJetPt)
1336+
// if (getCorrectedPt(jetMinusBkg.pt(), responseMatrix) < minJetPt)
13371337
if (jetMinusBkg.pt() < minJetPt)
13381338
continue;
13391339

@@ -1355,8 +1355,7 @@ struct AntinucleiInJets {
13551355
if (mcparticle.pdgCode() == kProtonBar && passedTrackSelection(track) && std::fabs(track.dcaZ()) < maxDcaz) {
13561356
if (mcparticle.isPhysicalPrimary()) {
13571357
registryMC.fill(HIST("antiproton_prim_dca_jet"), track.pt(), track.dcaXY());
1358-
}
1359-
else {
1358+
} else {
13601359
registryMC.fill(HIST("antiproton_all_dca_jet"), track.pt(), track.dcaXY());
13611360
}
13621361
}
@@ -1409,8 +1408,7 @@ struct AntinucleiInJets {
14091408
if (mcparticle.pdgCode() == kProtonBar && passedTrackSelection(track) && std::fabs(track.dcaZ()) < maxDcaz) {
14101409
if (mcparticle.isPhysicalPrimary()) {
14111410
registryMC.fill(HIST("antiproton_prim_dca_ue"), track.pt(), track.dcaXY());
1412-
}
1413-
else {
1411+
} else {
14141412
registryMC.fill(HIST("antiproton_all_dca_ue"), track.pt(), track.dcaXY());
14151413
}
14161414
}

0 commit comments

Comments
 (0)