]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TPC/AliTPCtrackerMI.h
bug fix (bug in compiler)
[u/mrichter/AliRoot.git] / TPC / AliTPCtrackerMI.h
index 38111eaa9fa6f466972a7cdac04a7ee3e5cffee2..80ed26b9de282ead3f61782307e47be659082de1 100644 (file)
@@ -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;}