From a6dd98d29fcc8a3c5209a06ab8c6bb68017bae0e Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Thu, 26 Feb 2026 14:37:32 +0000 Subject: [PATCH] Please consider the following formatting changes --- PWGCF/JCorran/Tasks/flowJSPCAnalysis.cxx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/PWGCF/JCorran/Tasks/flowJSPCAnalysis.cxx b/PWGCF/JCorran/Tasks/flowJSPCAnalysis.cxx index 25e6609a247..277aa874709 100644 --- a/PWGCF/JCorran/Tasks/flowJSPCAnalysis.cxx +++ b/PWGCF/JCorran/Tasks/flowJSPCAnalysis.cxx @@ -13,12 +13,13 @@ // \author Maxim Virta (maxim.virta@cern.ch), Cindy Mordasini (cindy.mordasini@cern.ch) // Standard headers. +#include +#include +#include + #include #include #include -#include -#include -#include // O2 headers. // // The first two are mandatory. @@ -104,7 +105,7 @@ struct flowJSPCAnalysis { // // The analysis assumes the data has been subjected to a QA of its selection, // // and thus only the final distributions of the data for analysis are saved. Filter collFilter = (nabs(aod::collision::posZ) < cfgEventCuts.cfgZvtxMax); - + Filter trackFilter = (aod::track::pt > cfgTrackCuts.cfgPtMin) && (aod::track::pt < cfgTrackCuts.cfgPtMax) && (nabs(aod::track::eta) < cfgTrackCuts.cfgEtaMax); Filter cftrackFilter = (nabs(aod::cftrack::eta) < cfgTrackCuts.cfgEtaMax) && (aod::cftrack::pt > cfgTrackCuts.cfgPtMin) && (aod::cftrack::pt < cfgTrackCuts.cfgPtMax) && ncheckbit(aod::track::trackType, as(cfgTrackBitMask));