From 42be607191232cfb505288842c80ca485cc7bbe8 Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Mon, 25 Sep 2023 14:10:11 +0000 Subject: [PATCH] Please consider the following formatting changes --- Common/DataModel/Multiplicity.h | 4 ++-- Common/TableProducer/multiplicityTable.cxx | 4 ++-- Common/Tasks/multiplicityQa.cxx | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Common/DataModel/Multiplicity.h b/Common/DataModel/Multiplicity.h index f41db50d11e..ae337853a4d 100644 --- a/Common/DataModel/Multiplicity.h +++ b/Common/DataModel/Multiplicity.h @@ -109,8 +109,8 @@ using MultZeq = MultZeqs::iterator; namespace multDebug { -DECLARE_SOA_COLUMN(MultDebugFT0A, multDebugFT0A, float); //! -DECLARE_SOA_COLUMN(MultDebugFT0C, multDebugFT0C, float); //! +DECLARE_SOA_COLUMN(MultDebugFT0A, multDebugFT0A, float); //! +DECLARE_SOA_COLUMN(MultDebugFT0C, multDebugFT0C, float); //! } // namespace multDebug DECLARE_SOA_TABLE(MultsDebug, "AOD", "MULTDEBUG", //! multDebug::MultDebugFT0A, diff --git a/Common/TableProducer/multiplicityTable.cxx b/Common/TableProducer/multiplicityTable.cxx index 1fdea0a50c3..67928c88f41 100644 --- a/Common/TableProducer/multiplicityTable.cxx +++ b/Common/TableProducer/multiplicityTable.cxx @@ -325,7 +325,7 @@ struct MultiplicityTableTaskIndexed { { // process function to acquire FT0A/C derived table for posterior study for (auto const& ft0 : ft0s) { - if(bitcheck(ft0.triggerMask(), 4)){ + if (bitcheck(ft0.triggerMask(), 4)) { float multFT0A = 0, multFT0C = 0; for (auto amplitude : ft0.amplitudeA()) { multFT0A += amplitude; @@ -334,7 +334,7 @@ struct MultiplicityTableTaskIndexed { multFT0C += amplitude; } - multDebug( multFT0A, multFT0C ); + multDebug(multFT0A, multFT0C); } } } diff --git a/Common/Tasks/multiplicityQa.cxx b/Common/Tasks/multiplicityQa.cxx index ad427c95c82..d775a2720d6 100644 --- a/Common/Tasks/multiplicityQa.cxx +++ b/Common/Tasks/multiplicityQa.cxx @@ -124,7 +124,7 @@ struct MultiplicityQa { // Contributors correlation histos.add("h2dNContribCorrAll", "h2dNContribCorrAll", kTH2D, {axisContributors, axisContributors}); - if (doprocessFIT){ + if (doprocessFIT) { histos.add("multiplicityQa/hIsolatedFT0A", "isolated FT0A", kTH1D, {axisMultFT0}); histos.add("multiplicityQa/hIsolatedFT0C", "isolated FT0C", kTH1D, {axisMultFT0}); histos.add("multiplicityQa/hIsolatedFT0M", "isolated FT0M", kTH1D, {axisMultFT0});