Skip to content

Commit

Permalink
fix check on dcaZ (AliceO2Group#5008)
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielSamitz authored Mar 6, 2024
1 parent 43d556b commit cbefa99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PWGEM/Dilepton/TableProducer/dielectronMl.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ struct DielectronMlSingleTrack {
if (abs(track.dcaXY()) > 1.) {
return false;
}
if (abs(track.dcaZ() > 1.)) {
if (abs(track.dcaZ()) > 1.) {
return false;
}
return true;
Expand Down

0 comments on commit cbefa99

Please sign in to comment.