From 6b95e3567907e24115bcfa4c6dbc48ec6d9ad813 Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Wed, 1 Apr 2026 16:23:19 +0000 Subject: [PATCH] Please consider the following formatting changes --- PWGLF/TableProducer/Strangeness/sigma0builder.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/PWGLF/TableProducer/Strangeness/sigma0builder.cxx b/PWGLF/TableProducer/Strangeness/sigma0builder.cxx index a949c029793..ce0b483390e 100644 --- a/PWGLF/TableProducer/Strangeness/sigma0builder.cxx +++ b/PWGLF/TableProducer/Strangeness/sigma0builder.cxx @@ -873,9 +873,9 @@ struct sigma0builder { // Calculate properties and fill struct info.DCADau = (cross.Mag2() > 0) ? std::abs(posdiff.Dot(cross)) / cross.R() : 999.f; info.CosPA = v01momentumNorm.Dot(v02momentumNorm); - - float Min_threshold = 1e-5f; // Threshold to consider lines as parallel, can be tuned - if (d < Min_threshold) { // Parallel or nearly parallel lines + + float Min_threshold = 1e-5f; // Threshold to consider lines as parallel, can be tuned + if (d < Min_threshold) { // Parallel or nearly parallel lines info.X = info.Y = info.Z = 0.f; // should we use another dummy value? Perhaps 999.f? return info; }