From: shahoian Date: Wed, 3 Apr 2013 14:15:16 +0000 (+0000) Subject: AliITSUSeed::GetClusterIndex will return cl. index in old format X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=commitdiff_plain;h=0bc46b994953eaefd4301e6e15d43fe61c912c73 AliITSUSeed::GetClusterIndex will return cl. index in old format (lr<<28) + (clId&0xf000000) to correctly set the ESDTrack hitmap --- diff --git a/ITS/UPGRADE/AliITSUSeed.cxx b/ITS/UPGRADE/AliITSUSeed.cxx index 9ec1ef5932b..50a2aaf4b78 100644 --- a/ITS/UPGRADE/AliITSUSeed.cxx +++ b/ITS/UPGRADE/AliITSUSeed.cxx @@ -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;