From 5d16cbd7514a9ae7a1b659efb9b2206960f3ef62 Mon Sep 17 00:00:00 2001 From: SCHOTTER Romain <47983209+romainschotter@users.noreply.github.com> Date: Mon, 31 Aug 2026 14:47:33 +0200 Subject: [PATCH 1/2] Add missing if-condition in centralityStudy --- Common/Tasks/centralityStudy.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Common/Tasks/centralityStudy.cxx b/Common/Tasks/centralityStudy.cxx index 92e14780c44..5ed6a5c85d4 100644 --- a/Common/Tasks/centralityStudy.cxx +++ b/Common/Tasks/centralityStudy.cxx @@ -934,7 +934,9 @@ struct CentralityStudy { return; } histos.fill(HIST("hCollisionSelection"), 17 /* is INEL > 0 */); - getHist(histPath + "hCollisionSelection")->Fill(17); + if (studies.doRunByRunHistograms) { + getHist(histPath + "hCollisionSelection")->Fill(17); + } if (evsel.applyBcSel) { if constexpr (requires { collision.has_multBC(); }) { From dcd4a608f954f5134066f5faa8b63c6c53ea17ef Mon Sep 17 00:00:00 2001 From: SCHOTTER Romain <47983209+romainschotter@users.noreply.github.com> Date: Mon, 31 Aug 2026 19:27:35 +0200 Subject: [PATCH 2/2] Dummy commit to restart CI --- Common/Tasks/centralityStudy.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common/Tasks/centralityStudy.cxx b/Common/Tasks/centralityStudy.cxx index 5ed6a5c85d4..a8f9f7f739d 100644 --- a/Common/Tasks/centralityStudy.cxx +++ b/Common/Tasks/centralityStudy.cxx @@ -147,7 +147,7 @@ struct CentralityStudy { } evsel; // _______________________________________ - // BC Selection + // BC Selections struct : ConfigurableGroup { std::string prefix = "bcsel"; Configurable rejectZNAC{"rejectZNAC", false, "reject if !(kIsBBZNA && kIsBBZNC)"};