From e4ce0589a22bc082ae9eb8c3dbaadc31801c35af Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Wed, 29 Jan 2025 18:27:44 +0000 Subject: [PATCH] Please consider the following formatting changes --- PWGMM/Mult/Tasks/heavy-ion-mult.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/PWGMM/Mult/Tasks/heavy-ion-mult.cxx b/PWGMM/Mult/Tasks/heavy-ion-mult.cxx index 5c88b9d23a8..2c3f9537c39 100644 --- a/PWGMM/Mult/Tasks/heavy-ion-mult.cxx +++ b/PWGMM/Mult/Tasks/heavy-ion-mult.cxx @@ -158,7 +158,7 @@ struct HeavyIonMultiplicity { Configurable IsApplyCentFT0C{"IsApplyCentFT0C", false, "Centrality based on FT0C"}; Configurable IsApplyCentFT0CVariant1{"IsApplyCentFT0Cvariant1", false, "Centrality based on FT0C variant1"}; Configurable IsApplyCentFT0M{"IsApplyCentFT0M", false, "Centrality based on FT0A + FT0C"}; - + void init(InitContext const&) { AxisSpec axisMult = {multHistBin, "Mult", "MultAxis"}; @@ -348,10 +348,10 @@ struct HeavyIonMultiplicity { cent = col.centFT0C(); } if (IsApplyCentFT0CVariant1) { - cent = col.centFT0CVariant1(); + cent = col.centFT0CVariant1(); } if (IsApplyCentFT0M) { - cent = col.centFT0M(); + cent = col.centFT0M(); } return cent; }