From ded52acf9d514a46f08a7ecbac3b1fd35148f6a8 Mon Sep 17 00:00:00 2001 From: Marta Urioni <78807256+murioni@users.noreply.github.com> Date: Thu, 26 Mar 2026 15:59:46 +0100 Subject: [PATCH] Update heavyionMultiplicity.cxx removed /2 in MC FT0M multiplicity calculation --- PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx b/PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx index d6f8a6df09f..f24f2a28763 100644 --- a/PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx +++ b/PWGLF/Tasks/GlobalEventProperties/heavyionMultiplicity.cxx @@ -467,7 +467,7 @@ struct HeavyionMultiplicity { if (isApplyCentFT0C) { cent = col.multMCFT0C(); } else if (isApplyCentFT0M) { - cent = (col.multMCFT0C() + col.multMCFT0A()) / 2.; + cent = col.multMCFT0C() + col.multMCFT0A(); } else if (isApplyCentFV0A) { cent = col.multMCFV0A(); }