Skip to content

Commit 17ee1c9

Browse files
authored
[PWGCF] Reversed sign for track.eta selection (AliceO2Group#10552)
1 parent 9ddec13 commit 17ee1c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PWGCF/Flow/Tasks/flowSP.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,7 @@ struct FlowSP {
657657
template <typename TrackObject>
658658
bool trackSelected(TrackObject track, const int& field)
659659
{
660-
if (std::fabs(track.eta()) < cfgEta)
660+
if (std::fabs(track.eta()) > cfgEta)
661661
return false;
662662
registry.fill(HIST("hTrackCount"), trackSel_Eta);
663663

0 commit comments

Comments
 (0)