From: kowal2 Date: Mon, 29 Sep 2003 11:49:15 +0000 (+0000) Subject: bug fix (bug in compiler) X-Git-Url: http://git.uio.no/git/?a=commitdiff_plain;h=e325274cff6c34971ca4660a8a4a5c55ab2eec63;p=u%2Fmrichter%2FAliRoot.git bug fix (bug in compiler) --- diff --git a/TPC/AliTPCtrackerMI.h b/TPC/AliTPCtrackerMI.h index 38111eaa9fa..80ed26b9de2 100644 --- a/TPC/AliTPCtrackerMI.h +++ b/TPC/AliTPCtrackerMI.h @@ -56,7 +56,9 @@ class AliTPCseed : public AliTPCtrack { return fIndex[row]; } Int_t GetClusterSector(Int_t row){ - return fIndex[row]>=0 ? ((fIndex[row]&0xff000000)>>24) :-1; + Int_t pica = -1; + if (fIndex[row]>=0) pica = ((fIndex[row]&0xff000000)>>24); + return pica; } void SetErrorY2(Float_t sy2){fErrorY2=sy2;}