From 8946b2526658a0439de778c7380914b4e87a887c Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Tue, 2 Jun 2026 10:37:16 +0000 Subject: [PATCH] Please consider the following formatting changes --- Detectors/Base/include/DetectorsBase/Stack.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Detectors/Base/include/DetectorsBase/Stack.h b/Detectors/Base/include/DetectorsBase/Stack.h index a893cdd4b7bc7..3845f10c4f5b4 100644 --- a/Detectors/Base/include/DetectorsBase/Stack.h +++ b/Detectors/Base/include/DetectorsBase/Stack.h @@ -357,11 +357,13 @@ inline bool Stack::isFromRadDecay(const int id) return false; } const auto entry = mTrackIDtoParticlesEntry[id]; - if (entry < 0 || entry >= static_cast(mParticles.size())) return false; + if (entry < 0 || entry >= static_cast(mParticles.size())) + return false; auto part = (mParticles[entry]); // primary particle ? - if (part.getProcess() == 0 ) return false; + if (part.getProcess() == 0) + return false; // particle directly from radioactive decay ? if (part.getProcess() == kPRadDecay) { return true;