From 4b3bbea70ba66a5c61f794862847a19579a31fc4 Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Wed, 13 May 2026 12:49:44 +0000 Subject: [PATCH] Please consider the following formatting changes --- PWGLF/TableProducer/Common/mcCentrality.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/PWGLF/TableProducer/Common/mcCentrality.cxx b/PWGLF/TableProducer/Common/mcCentrality.cxx index cf89c7682d0..eb340843e01 100644 --- a/PWGLF/TableProducer/Common/mcCentrality.cxx +++ b/PWGLF/TableProducer/Common/mcCentrality.cxx @@ -34,8 +34,8 @@ #include #include -#include #include +#include #include #include @@ -52,7 +52,7 @@ struct McCentrality { Produces centFT0M; Produces centFT0A; Produces centFT0C; - + // NOTE: Commented out unused produces to prevent garbage columns in AOD // Produces centFV0A; // Produces centFDDM; @@ -67,7 +67,7 @@ struct McCentrality { Service pdgDB; ConfigurableAxis binsPercentile{"binsPercentile", {VARIABLE_WIDTH, 0, 0.001, 0.01, 1.0, 5.0, 10.0, 15.0, 20.0, 25.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0, 90.0, 100.0}, "Binning of the percentile axis"}; ConfigurableAxis binsMultiplicity{"binsMultiplicity", {1000, 0, 5000}, "Binning of the multiplicity axis"}; - + // Added fillFt0M to allow running strictly on A/C without crashing on missing M Configurable fillFt0M{"fillFt0M", true, "Fills the FT0M histogram"}; Configurable fillFt0A{"fillFt0A", false, "Fills the FT0A histogram"}; @@ -148,7 +148,7 @@ struct McCentrality { } // Clone to detach from TFile directory so we can safely close the file auto hist = static_cast(obj->Clone(Form("%s_clone", name))); - hist->SetDirectory(nullptr); + hist->SetDirectory(nullptr); return hist; };