From 00cc783c9a88a4b5209a13baff34b5d27bddad58 Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Fri, 28 Nov 2025 19:35:09 +0000 Subject: [PATCH] Please consider the following formatting changes --- .../GlobalEventProperties/heavyionMultiplicity.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx b/PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx index d7c19489c03..6d7af06b4cc 100644 --- a/PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx +++ b/PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx @@ -313,7 +313,7 @@ struct HeavyionMultiplicity { x->SetBinLabel(1, "All MC events"); x->SetBinLabel(2, "MC events with reco event after event selection"); x->SetBinLabel(3, "MC events with no reco events"); - histos.add("hImpactParameterGenwithNoreco","hImpactParameterGenwithNoreco", "Impact parameter of generated MC events, with no recoevent", kTH1F, {impactParAxis}); + histos.add("hImpactParameterGenwithNoreco", "hImpactParameterGenwithNoreco", "Impact parameter of generated MC events, with no recoevent", kTH1F, {impactParAxis}); histos.add("hImpactParameterGen", "Impact parameter of generated MC events", kTH1F, {impactParAxis}); histos.add("hImpactParameterRec", "Impact parameter of selected MC events", kTH1F, {impactParAxis}); histos.add("hImpactParvsCentrRec", "Impact parameter of selected MC events vs centrality", kTH2F, {axisCent, impactParAxis}); @@ -917,15 +917,15 @@ struct HeavyionMultiplicity { histos.fill(HIST("MCEventHist"), 1); histos.fill(HIST("hImpactParameterGen"), mcCollision.impactParameter()); - if(RecCols.size()==0) { + if (RecCols.size() == 0) { histos.fill(HIST("MCEventHist"), 3); histos.fill(HIST("hImpactParameterGenwithNoreco"), mcCollision.impactParameter()); } - + bool atLeastOne = false; auto centrality = -999.; - auto numcontributors = -999; - for (const auto& RecCol : RecCols) { + auto numcontributors = -999; + for (const auto& RecCol : RecCols) { if (!isEventSelected(RecCol)) { continue; }