From 079d6c71bc26caf074f8619e43ff878dca4e954d Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Fri, 10 May 2024 10:09:10 +0000 Subject: [PATCH] Please consider the following formatting changes --- PWGLF/Tasks/QC/findableStudy.cxx | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/PWGLF/Tasks/QC/findableStudy.cxx b/PWGLF/Tasks/QC/findableStudy.cxx index f318c120cb1..4f013ba4857 100644 --- a/PWGLF/Tasks/QC/findableStudy.cxx +++ b/PWGLF/Tasks/QC/findableStudy.cxx @@ -143,11 +143,11 @@ struct findableStudy { bool hasBeenFound = false; // encode conditionals here - uint32_t withTPC = 0; // if prongs have TPC - uint32_t withITSTracker = 0; // if prongs have been ITS tracked + uint32_t withTPC = 0; // if prongs have TPC + uint32_t withITSTracker = 0; // if prongs have been ITS tracked uint32_t withITSTrackerTPC = 0; // if prongs have TPC and are ITS tracked - uint32_t withITSABTPC = 0; // if prongs have TPC and are ITS afterburned - uint32_t withSVertexerOK = 0; // if prongs have acceptable tracking conditions for svertexer + uint32_t withITSABTPC = 0; // if prongs have TPC and are ITS afterburned + uint32_t withSVertexerOK = 0; // if prongs have acceptable tracking conditions for svertexer for (auto& recv0 : recv0s) { if (recv0.isFound()) { @@ -174,14 +174,12 @@ struct findableStudy { bitset(withTPC, 1); if ( - (pTrack.hasTPC() && pTrack.hasITS()) || - (!pTrack.hasTPC() && pTrack.itsNCls() >= 6) - ) + (pTrack.hasTPC() && pTrack.hasITS()) || + (!pTrack.hasTPC() && pTrack.itsNCls() >= 6)) bitset(withSVertexerOK, 0); if ( - (nTrack.hasTPC() && nTrack.hasITS()) || - (!nTrack.hasTPC() && nTrack.itsNCls() >= 6) - ) + (nTrack.hasTPC() && nTrack.hasITS()) || + (!nTrack.hasTPC() && nTrack.itsNCls() >= 6)) bitset(withSVertexerOK, 1); if (pTrack.hasITS() && pTrack.itsChi2PerNcl() > -10.0f)