]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
AliITSUSeed::GetClusterIndex will return cl. index in old format
authorshahoian <shahoian@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 3 Apr 2013 14:15:16 +0000 (14:15 +0000)
committershahoian <shahoian@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 3 Apr 2013 14:15:16 +0000 (14:15 +0000)
(lr<<28) + (clId&0xf000000) to correctly set the ESDTrack hitmap

ITS/UPGRADE/AliITSUSeed.cxx

index 9ec1ef5932ba86000071a838dd90a814442aef31..50a2aaf4b782ecbb6333320a7d082affcc007619 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->GetClusterID();
+    if ( HasCluster() && (ncl++==ind) ) return seed->GetLrClusterID();//GetClusterID();
     seed = (AliITSUSeed*)seed->GetParent();
   }
   return -1;