From 2ce52783e01e53e279f28876b93036317d97a69f Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Fri, 6 Mar 2026 10:30:48 +0000 Subject: [PATCH] Please consider the following formatting changes --- PWGCF/Flow/Tasks/flowZdcEnergy.cxx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/PWGCF/Flow/Tasks/flowZdcEnergy.cxx b/PWGCF/Flow/Tasks/flowZdcEnergy.cxx index f2d7fd4f45d..5feb8a01b80 100644 --- a/PWGCF/Flow/Tasks/flowZdcEnergy.cxx +++ b/PWGCF/Flow/Tasks/flowZdcEnergy.cxx @@ -119,8 +119,6 @@ struct flowZdcEnergy { registry.add("hEnergyWithCent_ZNA_SumSectors", "", {HistType::kTH2D, {axisEnergy, axisCent}}); registry.add("hEnergyWithCent_ZNC_SumSectors", "", {HistType::kTH2D, {axisEnergy, axisCent}}); registry.add("hEnergyWithCent_RescaledSumDiff", "", {HistType::kTH2D, {axisRescaledDiff, axisCent}}); - - } void process(ZDCCollisions::iterator const& collision, BCsRun3 const& /*bcs*/, aod::Zdcs const& /*zdcs*/) @@ -143,7 +141,7 @@ struct flowZdcEnergy { double SumEnergyZNC = zdcCol.energySectorZNC()[0] + zdcCol.energySectorZNC()[1] + zdcCol.energySectorZNC()[2] + zdcCol.energySectorZNC()[3]; double commonDen = zdcCol.energyCommonZNA() + zdcCol.energyCommonZNC(); double sumDen = SumEnergyZNA + SumEnergyZNC; - + if (commonDen > 1e-3) { registry.fill(HIST("hEnergyWithCent_RescaledDiff"), (zdcCol.energyCommonZNA() - zdcCol.energyCommonZNC()) / commonDen, @@ -166,8 +164,6 @@ struct flowZdcEnergy { registry.fill(HIST("hEnergyWithCent_ZNC_4"), zdcCol.energySectorZNC()[3], centrality); registry.fill(HIST("hEnergyWithCent_ZNA_SumSectors"), SumEnergyZNA, centrality); registry.fill(HIST("hEnergyWithCent_ZNC_SumSectors"), SumEnergyZNC, centrality); - - } };