@@ -80,14 +80,14 @@ struct alice3decayFinder {
8080 Configurable<float > kaFromD_dcaXYconstant{" kaFromD_dcaXYconstant" , -1 .0f , " [0] in |DCAxy| > [0]+[1]/pT" };
8181 Configurable<float > kaFromD_dcaXYpTdep{" kaFromD_dcaXYpTdep" , 0.0 , " [1] in |DCAxy| > [0]+[1]/pT" };
8282
83- Configurable<float > DCosPA{" Cos of pointing angle " , 0.99 , " Cos of pointing angle: pt < 3 GeV" };
84- Configurable<float > DCosPAHighPt{" Cos of pointing angle high pt " , 0.995 , " Cos of pointing angle: 3 GeV < pt" };
85- Configurable<float > DCosPAxy{" Cos of pointing angle xy " , 0.99 , " Cos of pointing angle xy: pt < 3 GeV" };
86- Configurable<float > DCosPAxyHighPt{" Cos of pointing angle xy high pt " , 0.995 , " Cos of pointing angle xy: 3 GeV < pt" };
87- Configurable<float > DCosThetaStarLowPt{" Cos theta low pt " , 0.8 , " Cos theta; pt < 9" };
88- Configurable<float > DCosThetaStarHighPt{" Cos theta high pt " , 0.9 , " Cos theta; 9 < pt < 16" };
89- Configurable<float > DCosThetaStarVHighPt{" Cos theta vhigh " , 1.0 , " Cos theta; 16 < pt" };
90- Configurable<float > DDauDecayLength{" Normalized dau decay length " , 3 , " |Normalized dau decay length| > [0]" };
83+ Configurable<float > DCosPA{" DCosPA " , 0.99 , " Cos of pointing angle: pt < 3 GeV" };
84+ Configurable<float > DCosPAHighPt{" DCosPAHighPt " , 0.995 , " Cos of pointing angle: 3 GeV < pt" };
85+ Configurable<float > DCosPAxy{" DCosPAxy " , 0.99 , " Cos of pointing angle xy: pt < 3 GeV" };
86+ Configurable<float > DCosPAxyHighPt{" DCosPAxyHighPt " , 0.995 , " Cos of pointing angle xy: 3 GeV < pt" };
87+ Configurable<float > DCosThetaStarLowPt{" DCosThetaStarLowPt " , 0.8 , " Cos theta; pt < 9" };
88+ Configurable<float > DCosThetaStarHighPt{" DCosThetaStarHighPt " , 0.9 , " Cos theta; 9 < pt < 16" };
89+ Configurable<float > DCosThetaStarVHighPt{" DCosThetaStarVHighPt " , 1.0 , " Cos theta; 16 < pt" };
90+ Configurable<float > DDauDecayLength{" DDauDecayLength " , 3 , " |Normalized dau decay length| > [0]" };
9191
9292 Configurable<float > piFromLc_dcaXYconstant{" piFromLc_dcaXYconstant" , -1 .0f , " [0] in |DCAxy| > [0]+[1]/pT" };
9393 Configurable<float > piFromLc_dcaXYpTdep{" piFromLc_dcaXYpTdep" , 0.0 , " [1] in |DCAxy| > [0]+[1]/pT" };
@@ -427,7 +427,7 @@ struct alice3decayFinder {
427427 else if (dmeson.pt > 16 && std::fabs (dmeson.cosThetaStar ) > DCosThetaStarVHighPt)
428428 continue ;
429429
430- if (dmeson.normalizedDecayLength < DDauDecayLength)
430+ if (dmeson.normalizedDecayLength > DDauDecayLength)
431431 continue ;
432432
433433 histos.fill (HIST (" hDCADDaughters" ), dmeson.dcaDau * 1e+4 );
@@ -474,7 +474,7 @@ struct alice3decayFinder {
474474 else if (dmeson.pt > 16 && std::fabs (dmeson.cosThetaStar ) > DCosThetaStarVHighPt)
475475 continue ;
476476
477- if (dmeson.normalizedDecayLength < DDauDecayLength)
477+ if (dmeson.normalizedDecayLength > DDauDecayLength)
478478 continue ;
479479
480480 histos.fill (HIST (" hDCADbarDaughters" ), dmeson.dcaDau * 1e+4 );
0 commit comments