Skip to content

Commit b990fa0

Browse files
committed
Please consider the following formatting changes
1 parent 5ac3495 commit b990fa0

1 file changed

Lines changed: 7 additions & 8 deletions

File tree

PWGCF/Flow/Tasks/flowGfwTask.cxx

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -726,7 +726,7 @@ struct FlowGfwTask {
726726
registry.fill(HIST("hEventCount"), kISGOODITSLAYERSALL);
727727
}
728728

729-
float vtxz = -999, zResmin=0.25, maxContrib=20;
729+
float vtxz = -999, zResmin = 0.25, maxContrib = 20;
730730
if (collision.numContrib() > 1) {
731731
vtxz = collision.posZ();
732732
float zRes = std::sqrt(collision.covZZ());
@@ -752,7 +752,7 @@ struct FlowGfwTask {
752752
}
753753

754754
// V0A T0A 5 sigma cut
755-
float five=5;
755+
float five = 5;
756756
if (cfgV0AT0A5Sigma) {
757757
if (std::abs(collision.multFV0A() - fT0AV0AMean->Eval(collision.multFT0A())) > five * fT0AV0ASigma->Eval(collision.multFT0A()))
758758
return false;
@@ -934,7 +934,7 @@ struct FlowGfwTask {
934934

935935
registry.fill(HIST("ZNvsZEMcoll"), aZEM1 + aZEM2, aZNA + aZNC);
936936

937-
float zero=0, five=5, ten=10, twenty=20, thirty=30;
937+
float zero = 0, five = 5, ten = 10, twenty = 20, thirty = 30;
938938
if (centrality >= zero && centrality <= five) {
939939
registry.fill(HIST("ZNvsZEMcoll05"), aZEM1 + aZEM2, aZNA + aZNC);
940940
} else if (centrality > five && centrality <= ten) {
@@ -1084,7 +1084,7 @@ struct FlowGfwTask {
10841084
fillProfile(corrconfigs.at(7), HIST("c34Nch"), nch);
10851085

10861086
// 0-5% centrality Nch
1087-
float zero=0, five=5;
1087+
float zero = 0, five = 5;
10881088
if (centrality >= zero && centrality <= five) {
10891089
fillProfile(corrconfigs.at(0), HIST("c22Nch05"), nch);
10901090
fillProfile(corrconfigs.at(1), HIST("c24Nch05"), nch);
@@ -1120,7 +1120,6 @@ struct FlowGfwTask {
11201120
fillProfile(corrconfigs.at(6), bootstrapArray[sampleIndex][kc32Nchetagap], nch);
11211121
fillProfile(corrconfigs.at(7), bootstrapArray[sampleIndex][kc34Nch], nch);
11221122

1123-
11241123
if (centrality >= zero && centrality <= five) {
11251124
fillProfile(corrconfigs.at(0), bootstrapArray[sampleIndex][kc22Nch05], nch);
11261125
fillProfile(corrconfigs.at(1), bootstrapArray[sampleIndex][kc24Nch05], nch);
@@ -1197,7 +1196,7 @@ struct FlowGfwTask {
11971196
registry.fill(HIST("hCenMCRec"), centrality);
11981197
registry.fill(HIST("hPtNchMCRec"), track.pt(), track.size());
11991198

1200-
float zero=0, five=5;
1199+
float zero = 0, five = 5;
12011200
if (centrality >= zero && centrality <= five) {
12021201
registry.fill(HIST("hPtMCRec05"), track.pt());
12031202
registry.fill(HIST("hCenMCRec05"), centrality);
@@ -1262,7 +1261,7 @@ struct FlowGfwTask {
12621261
registry.fill(HIST("hPtMCGen"), particle.pt());
12631262
registry.fill(HIST("hCenMCGen"), centrality);
12641263

1265-
float zero=0, five=5;
1264+
float zero = 0, five = 5;
12661265
if (centrality >= zero && centrality <= five) {
12671266
registry.fill(HIST("hPtMCGen05"), particle.pt());
12681267
registry.fill(HIST("hCenMCGen05"), centrality);
@@ -1277,7 +1276,7 @@ struct FlowGfwTask {
12771276
for (const auto& track : groupedTracksReco) {
12781277

12791278
registry.fill(HIST("hCorr"), numberOfTracks[0], track.size());
1280-
float zero=0, five=5;
1279+
float zero = 0, five = 5;
12811280
if (centrality >= zero && centrality <= five) {
12821281
registry.fill(HIST("hCorr05"), numberOfTracks[0], track.size());
12831282
}

0 commit comments

Comments
 (0)