Skip to content

Commit f48ff5a

Browse files
committed
Resolve clang format issues
1 parent f4a5135 commit f48ff5a

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,6 @@ struct RadialFlowDecorr {
322322
histos.fill(HIST("h3DnsigmaTpcVsPtBefCut_Cent_AntiPr"), cent, pt, track.tpcNSigmaPr());
323323
histos.fill(HIST("h3DnsigmaTofVsPtBefCut_Cent_AntiPr"), cent, pt, track.tofNSigmaPr());
324324
histos.fill(HIST("h3DnsigmaTpcVsTofBefCut_Cent_AntiPr"), cent, track.tofNSigmaPr(), track.tpcNSigmaPr());
325-
326325
}
327326
histos.fill(HIST("h3DnsigmaTpcVsPtBefCut_Cent_PiAll"), cent, pt, track.tpcNSigmaPi());
328327
histos.fill(HIST("h3DnsigmaTofVsPtBefCut_Cent_PiAll"), cent, pt, track.tofNSigmaPi());
@@ -418,8 +417,8 @@ struct RadialFlowDecorr {
418417
histos.fill(HIST("h3DnsigmaTpcVsPtAftCut_Cent"), cent, pt, tpcPr);
419418
histos.fill(HIST("h3DnsigmaTofVsPtAftCut_Cent"), cent, pt, tofPr);
420419
histos.fill(HIST("h3DnsigmaTpcVsTofAftCut_Cent"), cent, tofPi, tpcPr);
421-
}
422-
else return;
420+
} else
421+
return;
423422
}
424423

425424
// Returns: 0 = Unknown/Reject, 1 = Pion, 2 = Kaon, 3 = Proton
@@ -3089,7 +3088,7 @@ struct RadialFlowDecorr {
30893088
isKa && sign < 0, isKa && sign > 0, isKa,
30903089
isPr && sign < 0, isPr && sign > 0, isPr};
30913090

3092-
fillNSigmaAftCut(track, cent, isSpecies);
3091+
fillNSigmaAftCut(track, cent, isSpecies);
30933092
for (int isp = 0; isp < KNsp; ++isp) {
30943093
if (!isSpecies[isp])
30953094
continue;
@@ -3283,7 +3282,8 @@ struct RadialFlowDecorr {
32833282
}
32843283

32853284
for (int isp = 0; isp < KNsp; ++isp) {
3286-
if (sumWi[isp][0] < 1.0f) continue;
3285+
if (sumWi[isp][0] < 1.0f)
3286+
continue;
32873287
histos.fill(HIST("Prof_Cent_Nsp_Nchrec"), cent, isp, sumWi[isp][0]);
32883288
histos.fill(HIST("Prof_Mult_Nsp_Nchrec"), coll.multNTracksPV(), isp, sumWi[isp][0]);
32893289
histos.fill(HIST("Prof_Cent_Nsp_MeanpT"), cent, isp, sumWipti[isp][0] / sumWi[isp][0]);
@@ -3293,7 +3293,8 @@ struct RadialFlowDecorr {
32933293
for (int ietaA = 0; ietaA < KNEta; ++ietaA) {
32943294
for (int ietaC = 0; ietaC < KNEta; ++ietaC) {
32953295
for (int isp = 0; isp < KNsp; ++isp) {
3296-
if ((sumWi[isp][ietaA] < 1.0f) || (sumWi[isp][ietaC] < 1.0f)) continue;
3296+
if ((sumWi[isp][ietaA] < 1.0f) || (sumWi[isp][ietaC] < 1.0f))
3297+
continue;
32973298

32983299
double wCorrAB = sumWi[isp][ietaA] + sumWi[isp][ietaC];
32993300
if (wCorrAB > 0) {

0 commit comments

Comments
 (0)