From 3d172d79a5ae98de24a3842c7995cf69cb7b2a63 Mon Sep 17 00:00:00 2001 From: hristov Date: Tue, 19 Jul 2005 14:47:01 +0000 Subject: [PATCH] Do not skip the negative indexes, even if their meaning is not clear... --- TPC/AliTPCtrackerMI.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TPC/AliTPCtrackerMI.cxx b/TPC/AliTPCtrackerMI.cxx index 4bb2925c9f5..c309267e82c 100644 --- a/TPC/AliTPCtrackerMI.cxx +++ b/TPC/AliTPCtrackerMI.cxx @@ -1638,8 +1638,8 @@ Int_t AliTPCtrackerMI::UpdateClusters(AliTPCseed& t, Int_t nr) { } } - if (index<0) return 0; - UInt_t uindex = index; + // if (index<0) return 0; + UInt_t uindex = TMath::Abs(index); if (krow) { //cl = krow.FindNearest2(y+10,z,roady,roadz,uindex); -- 2.43.5