From 0cea396ea2cdef9160814a2acd77edd5a5e3d650 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADt=20Ku=C4=8Dera?= Date: Tue, 2 Apr 2024 11:37:01 +0200 Subject: [PATCH] PWGJE: Fix compilation warnings: absolute-value --- PWGJE/Tasks/phiInJets.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PWGJE/Tasks/phiInJets.cxx b/PWGJE/Tasks/phiInJets.cxx index 51bc578e52c..f49938cf1b1 100644 --- a/PWGJE/Tasks/phiInJets.cxx +++ b/PWGJE/Tasks/phiInJets.cxx @@ -209,7 +209,7 @@ struct phiInJets { if (cfgPrimaryTrack && !track.isPrimaryTrack()) return false; - if (std::abs(track.tpcNClsFindable()) < cfgnFindableTPCClusters) + if (track.tpcNClsFindable() < cfgnFindableTPCClusters) return false; if (std::abs(track.tpcNClsCrossedRows()) < cfgnTPCCrossedRows)