Skip to content

Commit

Permalink
[PWGLF] Fix V0 DCA cut in Lambda polarisation task (#8487)
Browse files Browse the repository at this point in the history
Co-authored-by: junleekim <[email protected]>
  • Loading branch information
jikim1290 and junleekim authored Nov 17, 2024
1 parent 96e1226 commit fc09f29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PWGLF/Tasks/Strangeness/lambdapolarization.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ struct lambdapolarization {
return false;
if (candidate.v0cosPA() < cfgv0CosPA)
return false;
if (candidate.dcaV0daughters() > cfgDCAV0Dau)
if (std::abs(candidate.dcaV0daughters()) > cfgDCAV0Dau)
return false;
if (candidate.pt() < cfgV0PtMin)
return false;
Expand Down

0 comments on commit fc09f29

Please sign in to comment.