Skip to content

Commit 7fb0a17

Browse files
author
Sabrina Hernandez
committed
fix clang formatting
1 parent fc1854e commit 7fb0a17

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

PWGCF/Flow/Tasks/flowZdcTask.cxx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -581,8 +581,7 @@ struct FlowZdcTask {
581581
histos.fill(HIST("ZPAVstdc"), tZPA, zpA);
582582
histos.fill(HIST("ZPAvsCent"), cent, zpA);
583583
if (std::isfinite(zpA) && !std::isnan(zpA) &&
584-
cent >= minT0CcentCut && cent < maxT0CcentCut
585-
&& glbTracks >= minNch && glbTracks < maxNch) {
584+
cent >= minT0CcentCut && cent < maxT0CcentCut && glbTracks >= minNch && glbTracks < maxNch) {
586585
histos.fill(HIST("pZPAvsFT0Ccent"), cent, zpA);
587586
histos.fill(HIST("pZPAvsGlbTrack"), glbTracks, zpA);
588587
}
@@ -593,8 +592,7 @@ struct FlowZdcTask {
593592
histos.fill(HIST("ZPCSector"), sumZPC / cfgCollisionEnergy);
594593
histos.fill(HIST("ZPCvsCent"), cent, zpC);
595594
if (std::isfinite(zpC) && !std::isnan(zpC) &&
596-
cent >= minT0CcentCut && cent < maxT0CcentCut
597-
&& glbTracks >= minNch && glbTracks < maxNch) {
595+
cent >= minT0CcentCut && cent < maxT0CcentCut && glbTracks >= minNch && glbTracks < maxNch) {
598596
histos.fill(HIST("pZPCvsFT0Ccent"), cent, zpC);
599597
histos.fill(HIST("pZPCvsGlbTrack"), glbTracks, zpC);
600598
}

0 commit comments

Comments
 (0)