From 39bb6772190cdc20d2968a488bf57726da07eaf2 Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Fri, 29 May 2026 11:55:54 +0000 Subject: [PATCH] Please consider the following formatting changes --- ALICE3/Core/OTFParticle.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ALICE3/Core/OTFParticle.h b/ALICE3/Core/OTFParticle.h index 73b5183ffed..9f93ea59597 100644 --- a/ALICE3/Core/OTFParticle.h +++ b/ALICE3/Core/OTFParticle.h @@ -58,7 +58,7 @@ class OTFParticle if (particle.has_mothers()) { mIndicesMother = {particle.mothersIds().front(), particle.mothersIds().back()}; } - if constexpr ( requires { particle.decayerBits(); } ) { + if constexpr (requires { particle.decayerBits(); }) { mBits = particle.decayerBits(); } else { // If we are here, we created particle in the standard workflow -- without secondaries @@ -162,7 +162,7 @@ class OTFParticle // Bits bool checkBit(DecayerBits bit) const { return mBits.test(static_cast(bit)); } void setBit(DecayerBits bit, bool value = true) { mBits.set(static_cast(bit), value); } - void setBitOn(DecayerBits bit) { mBits.set(static_cast(bit), true); } + void setBitOn(DecayerBits bit) { mBits.set(static_cast(bit), true); } void setBitOff(DecayerBits bit) { mBits.set(static_cast(bit), false); } std::bitset<8> getBits() const { return mBits; }