From 9ec516cca7eb5288396f508862be38703e221fd7 Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Wed, 7 Jan 2026 14:55:13 +0000 Subject: [PATCH] Please consider the following formatting changes --- PWGCF/Femto3D/Tasks/femto3dQA.cxx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/PWGCF/Femto3D/Tasks/femto3dQA.cxx b/PWGCF/Femto3D/Tasks/femto3dQA.cxx index 0724d270f60..e41dc2e5cd8 100644 --- a/PWGCF/Femto3D/Tasks/femto3dQA.cxx +++ b/PWGCF/Femto3D/Tasks/femto3dQA.cxx @@ -113,9 +113,11 @@ struct QAHistograms { int N = _dcaBinning.value[0]; // number of bins -- must be odd otherwise will be increased by 1 std::unique_ptr dca_bins; - + if (static_cast(_dcaBinning.value[2]) != 1.0) { - if (N % 2 != 1) { N += 1;} + if (N % 2 != 1) { + N += 1; + } dca_bins = calc_var_bins(N + 1, _dcaBinning.value[1], static_cast(_dcaBinning.value[2])); } else { dca_bins = calc_const_bins(N, -_dcaBinning.value[1], _dcaBinning.value[1]);