From 12857cc80f4d3f9948ffb638cc88f3774da14f1a Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Wed, 20 May 2026 10:41:07 +0000 Subject: [PATCH] Please consider the following formatting changes --- Common/Tasks/centralityStudypp.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Common/Tasks/centralityStudypp.cxx b/Common/Tasks/centralityStudypp.cxx index 41dc1b58fbc..a43f59e1973 100644 --- a/Common/Tasks/centralityStudypp.cxx +++ b/Common/Tasks/centralityStudypp.cxx @@ -329,11 +329,11 @@ struct centralityStudypp { float multNTracksGlobal = collision.multNTracksGlobal(); float mftNtracks = collision.mftNtracks(); float multNTracksPV = collision.multNTracksPV(); - + if (applyVertexZEqualization) { float epsilon = 1e-2; // average value after which this collision will be disregarded float maxVertexZ = 15.0f; // max value for any equalization attempt - + // same defaults as multCentTable in case of unhealthy signals multFV0A = 0.0f; multFT0A = 0.0f; @@ -344,7 +344,7 @@ struct centralityStudypp { mftNtracks = 0.0f; multNTracksPV = 0.0f; - if(std::abs(collision.multPVz()) < maxVertexZ){ // operate consistently vs multCentTable + if (std::abs(collision.multPVz()) < maxVertexZ) { // operate consistently vs multCentTable if (hVtxZFV0A->Interpolate(collision.multPVz()) > epsilon && collision.multFV0A() > -1.0f) { multFV0A = hVtxZFV0A->Interpolate(0.0) * collision.multFV0A() / hVtxZFV0A->Interpolate(collision.multPVz()); }