File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments