Skip to content

Commit 09b0ea5

Browse files
committed
adding q2 plots and switch for track selection
1 parent cb9a32d commit 09b0ea5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ struct jEPFlowAnalysis {
7676
Configurable<bool> cfgEffCor{"cfgEffCor", false, "flag for efficiency correction"};
7777
Configurable<std::string> cfgEffCorDir{"cfgEffCorDir", "Users/n/nmallick/Run3OO/Eff/LHC25h3b_FT0C", "path for efficiency correction"};
7878

79+
Configurable<bool> cfgTrkSelFlag{"cfgTrkSelFlag", true, "flag for track selection"};
7980
Configurable<bool> cfgSystStudy{"cfgSystStudy", false, "flag for syst study"};
8081
Configurable<int> cfgITSNCls{"cfgITSNCls", 5, "minimum number of its clusters"};
8182
Configurable<int> cfgTPCNclsCR{"cfgTPCNclsCR", 70, "minimum number of tpc cluster crossed rows"};
@@ -278,7 +279,7 @@ struct jEPFlowAnalysis {
278279
epFlowHistograms.fill(HIST("EpResQvecRefARefBxy"), i + 2, cent, qx_shifted[2] * qy_shifted[1] - qx_shifted[1] * qy_shifted[2]);
279280

280281
for (const auto& track : tracks) {
281-
if (trackSel(track))
282+
if (cfgTrkSelFlag && trackSel(track))
282283
continue;
283284

284285
if (cfgEffCor) {

0 commit comments

Comments
 (0)