]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Fix needed on Sun and Alpha
authorhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 11 May 2001 07:16:56 +0000 (07:16 +0000)
committerhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 11 May 2001 07:16:56 +0000 (07:16 +0000)
TPC/AliTPCtracker.cxx

index 8ff4febd7ec2976c9e9c10f525156538148d99ff..b5684523a0eb8300a42416df24da0b9e580f7c2e 100644 (file)
@@ -15,6 +15,9 @@
 
 /*
 $Log$
+Revision 1.8  2001/05/08 15:00:15  hristov
+Corrections for tracking in arbitrary magnenetic field. Changes towards a concept of global Alice track. Back propagation of reconstructed tracks (Yu.Belikov)
+
 Revision 1.5  2000/12/20 07:51:59  kowal2
 Changes suggested by Alessandra and Paolo to avoid overlapped
 data fields in encapsulated classes.
@@ -798,7 +801,7 @@ AliCluster *AliTPCtracker::GetCluster(Int_t index) const {
   Int_t row=(index&0x00ff0000)>>16; 
   Int_t ncl=(index&0x0000ffff)>>00;
 
-  AliTPCClustersRow *clrow=fClustersArray.GetRow(sec,row);
+  AliTPCClustersRow *clrow=((AliTPCtracker*)this)->fClustersArray.GetRow(sec,row);;
   return (AliCluster*)(*clrow)[ncl];      
 }