]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
bug fix (bug in compiler)
authorkowal2 <kowal2@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 29 Sep 2003 11:49:15 +0000 (11:49 +0000)
committerkowal2 <kowal2@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 29 Sep 2003 11:49:15 +0000 (11:49 +0000)
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;}