Skip to content

Commit 69a7711

Browse files
committed
linter, clang
1 parent bea685f commit 69a7711

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ struct FlowGenericFramework {
261261
nchbinning.push_back(nchskip * i + o2::analysis::gfw::nchlow + 0.5);
262262
}
263263
AxisSpec nchAxis = {nchbinning, "N_{ch}"};
264-
AxisSpec bAxis = {200,0,20, "#it{b}"};
264+
AxisSpec bAxis = {200, 0, 20, "#it{b}"};
265265
AxisSpec t0cAxis = {70, 0, 70000, "N_{ch} (T0C)"};
266266
AxisSpec t0aAxis = {200, 0, 200, "N_{ch}"};
267267
AxisSpec multpvAxis = {4000, 0, 4000, "N_{ch} (PV)"};
@@ -282,7 +282,7 @@ struct FlowGenericFramework {
282282
registry.add("MCGen/before/pt_gen", "", {HistType::kTH1D, {ptAxis}});
283283
registry.add("MCGen/before/phi_eta_vtxZ_gen", "", {HistType::kTH3D, {phiAxis, etaAxis, vtxAxis}});
284284
registry.addClone("MCGen/before/", "MCGen/after/");
285-
registry.add("MCGen/impactParameter","",{HistType::kTH2D,{{bAxis,nchAxis}}});
285+
registry.add("MCGen/impactParameter", "", {HistType::kTH2D, {{bAxis, nchAxis}}});
286286
}
287287
if (doprocessMCReco || doprocessData || doprocessRun2) {
288288
registry.add("trackQA/before/phi_eta_vtxZ", "", {HistType::kTH3D, {phiAxis, etaAxis, vtxAxis}});
@@ -1103,7 +1103,7 @@ struct FlowGenericFramework {
11031103
{
11041104
float centrality = -1;
11051105
int run = 0;
1106-
registry.fill(HIST("MCGen/impactParamter"), mcCollision.impactParameter(),mcParticles.size());
1106+
registry.fill(HIST("MCGen/impactParamter"), mcCollision.impactParameter(), mcParticles.size());
11071107
processCollision<kGen>(mcCollision, mcParticles, centrality, run);
11081108
}
11091109
PROCESS_SWITCH(FlowGenericFramework, processOnTheFly, "Process analysis for MC on-the-fly generated events", false);

0 commit comments

Comments
 (0)