From d29e679212c7f54cc021379e9dc9a1f9923990c6 Mon Sep 17 00:00:00 2001 From: ALICE Builder Date: Wed, 24 Apr 2024 21:34:12 +0200 Subject: [PATCH] Please consider the following formatting changes (#281) --- Common/Tasks/centralityStudy.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Common/Tasks/centralityStudy.cxx b/Common/Tasks/centralityStudy.cxx index 014a10d1800..9a87e1c5b7d 100644 --- a/Common/Tasks/centralityStudy.cxx +++ b/Common/Tasks/centralityStudy.cxx @@ -76,7 +76,7 @@ struct centralityStudy { histos.add("hFT0C_BCs", "hFT0C_BCs", kTH1D, {axisMultFT0C}); } - if(do2DPlots){ + if (do2DPlots) { histos.add("hFT0CvsNContribs", "hFT0CvsNContribs", kTH2F, {axisMultPVContributors, axisMultFT0C}); histos.add("hMatchedVsITSOnly", "hMatchedVsITSOnly", kTH2F, {axisMultITSOnly, axisMultITSTPC}); } @@ -132,7 +132,7 @@ struct centralityStudy { // if we got here, we also finally fill the FT0C histogram, please histos.fill(HIST("hFT0C_Collisions"), collision.multFT0C() /* Not at same bunch pile-up */); - if(do2DPlots){ + if (do2DPlots) { histos.fill(HIST("hFT0CvsNContribs"), collision.multNTracksPV(), collision.multFT0C()); histos.fill(HIST("hMatchedVsITSOnly"), collision.multNTracksITSOnly(), collision.multNTracksITSTPC()); }