Skip to content

Commit 2220612

Browse files
lauraserLaura Serksnyte
andauthored
[PWGCF] Update to include Run3 DCA pt dep selection (#13994)
Co-authored-by: Laura Serksnyte <laura.serksnyte@cern.ch>
1 parent 0d4803d commit 2220612

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

PWGCF/FemtoDream/Tasks/femtoDreamDebugTrack.cxx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ struct femtoDreamDebugTrack {
5050
Configurable<float> ConfTrk1_PIDThres{"ConfTrk1_PIDThres", 0.75, "Particle 1 - Read from cutCulator"};
5151

5252
Configurable<bool> ConfOptDCACutPtDep{"ConfOptDCACutPtDep", false, "Use pt dependent dca cut"};
53+
Configurable<bool> ConfUseRun2Function{"ConfUseRun2Function", true, "Use Run2 pT dependent DCA selection function"};
5354
Configurable<bool> ConfOptCorrelatedPlots{"ConfOptCorrelatedPlots", false, "Enable additional three dimensional histogramms. High memory consumption. Use for debugging"};
5455
ConfigurableAxis ConfBinmult{"ConfBinmult", {1, 0, 1}, "multiplicity Binning"};
5556
ConfigurableAxis ConfBinmultPercentile{"ConfBinmultPercentile", {10, 0.0f, 100.0f}, "multiplicity percentile Binning"};
@@ -82,7 +83,7 @@ struct femtoDreamDebugTrack {
8283
(aod::femtodreamparticle::pt < ConfTrk1_maxPt) &&
8384
(aod::femtodreamparticle::eta > ConfTrk1_minEta) &&
8485
(aod::femtodreamparticle::eta < ConfTrk1_maxEta) &&
85-
ifnode(ConfOptDCACutPtDep, nabs(aod::femtodreamparticle::tempFitVar) < 0.0105f + (0.035f / npow(aod::femtodreamparticle::pt, 1.1f)),
86+
ifnode(ConfOptDCACutPtDep, ifnode(ConfUseRun2Function, nabs(aod::femtodreamparticle::tempFitVar) < 0.0105f + (0.035f / npow(aod::femtodreamparticle::pt, 1.1f)), nabs(aod::femtodreamparticle::tempFitVar) < 0.004f + (0.013f / aod::femtodreamparticle::pt)),
8687
(aod::femtodreamparticle::tempFitVar > ConfTrk1_TempFitVarMin) &&
8788
(aod::femtodreamparticle::tempFitVar < ConfTrk1_TempFitVarMax));
8889

PWGCF/FemtoDream/Tasks/femtoDreamTripletTaskTrackTrackTrack.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ struct femtoDreamTripletTaskTrackTrackTrack {
7777
(ncheckbit(aod::femtodreamparticle::cut, ConfCutPart)) &&
7878
(aod::femtodreamparticle::pt < ConfMaxpT) &&
7979
(aod::femtodreamparticle::pt > ConfMinpT) &&
80-
ifnode(ConfDCACutPtDep, (nabs(aod::femtodreamparticle::tempFitVar) <= 0.0105f + (0.035f / npow(aod::femtodreamparticle::pt, 1.1f))),
80+
ifnode(ConfDCACutPtDep, (nabs(aod::femtodreamparticle::tempFitVar) <= 0.004f + (0.013f / aod::femtodreamparticle::pt)),
8181
((aod::femtodreamparticle::tempFitVar >= ConfMinDCAxy) &&
8282
(aod::femtodreamparticle::tempFitVar <= ConfMaxDCAxy)));
8383
;
@@ -87,7 +87,7 @@ struct femtoDreamTripletTaskTrackTrackTrack {
8787
(ncheckbit(aod::femtodreamparticle::cut, ConfCutPart)) &&
8888
(aod::femtodreamparticle::pt < ConfMaxpT) &&
8989
(aod::femtodreamparticle::pt > ConfMinpT) &&
90-
ifnode(ConfDCACutPtDep, (nabs(aod::femtodreamparticle::tempFitVar) <= 0.0105f + (0.035f / npow(aod::femtodreamparticle::pt, 1.1f))),
90+
ifnode(ConfDCACutPtDep, (nabs(aod::femtodreamparticle::tempFitVar) <= 0.004f + (0.013f / aod::femtodreamparticle::pt)),
9191
((aod::femtodreamparticle::tempFitVar >= ConfMinDCAxy) &&
9292
(aod::femtodreamparticle::tempFitVar <= ConfMaxDCAxy)));
9393
;

0 commit comments

Comments
 (0)