]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Fix in filling the hit-map of ESDtrack
authorshahoian <shahoian@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 3 Apr 2013 19:42:54 +0000 (19:42 +0000)
committershahoian <shahoian@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 3 Apr 2013 19:42:54 +0000 (19:42 +0000)
ITS/UPGRADE/AliITSUSeed.cxx

index 50a2aaf4b782ecbb6333320a7d082affcc007619..200d3a7b5bbf74dd0839b369b77e2ef01c1b9729 100644 (file)
@@ -248,7 +248,7 @@ Int_t AliITSUSeed::GetClusterIndex(Int_t ind) const
   int ncl = 0;
   const AliITSUSeed* seed = this;
   while(seed) {
-    if ( HasCluster() && (ncl++==ind) ) return seed->GetLrClusterID();//GetClusterID();
+    if ( seed->HasCluster() && (ncl++==ind) ) return seed->GetLrClusterID();//GetClusterID();
     seed = (AliITSUSeed*)seed->GetParent();
   }
   return -1;