Skip to content

Commit a6dd98d

Browse files
committed
Please consider the following formatting changes
1 parent a0dbc04 commit a6dd98d

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

PWGCF/JCorran/Tasks/flowJSPCAnalysis.cxx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,13 @@
1313
// \author Maxim Virta (maxim.virta@cern.ch), Cindy Mordasini (cindy.mordasini@cern.ch)
1414

1515
// Standard headers.
16+
#include <TFormula.h>
17+
#include <THnSparse.h>
18+
#include <TRandom3.h>
19+
1620
#include <chrono>
1721
#include <string>
1822
#include <vector>
19-
#include <TRandom3.h>
20-
#include <THnSparse.h>
21-
#include <TFormula.h>
2223

2324
// O2 headers. //
2425
// The first two are mandatory.
@@ -104,7 +105,7 @@ struct flowJSPCAnalysis {
104105
// // The analysis assumes the data has been subjected to a QA of its selection,
105106
// // and thus only the final distributions of the data for analysis are saved.
106107
Filter collFilter = (nabs(aod::collision::posZ) < cfgEventCuts.cfgZvtxMax);
107-
108+
108109
Filter trackFilter = (aod::track::pt > cfgTrackCuts.cfgPtMin) && (aod::track::pt < cfgTrackCuts.cfgPtMax) && (nabs(aod::track::eta) < cfgTrackCuts.cfgEtaMax);
109110
Filter cftrackFilter = (nabs(aod::cftrack::eta) < cfgTrackCuts.cfgEtaMax) && (aod::cftrack::pt > cfgTrackCuts.cfgPtMin) && (aod::cftrack::pt < cfgTrackCuts.cfgPtMax) && ncheckbit(aod::track::trackType, as<uint8_t>(cfgTrackBitMask));
110111

0 commit comments

Comments
 (0)