From: skowron Date: Thu, 17 Oct 2002 12:25:17 +0000 (+0000) Subject: Lookup of both parameters setup X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=commitdiff_plain;h=2f1287d273a3ecedad1adbb695905b25e0e96c1a Lookup of both parameters setup --- diff --git a/HBTAN/AliHBTReaderTPC.cxx b/HBTAN/AliHBTReaderTPC.cxx index b765de0ff96..925cb0c3bb0 100644 --- a/HBTAN/AliHBTReaderTPC.cxx +++ b/HBTAN/AliHBTReaderTPC.cxx @@ -192,12 +192,16 @@ Int_t AliHBTReaderTPC::Read(AliHBTRun* particles, AliHBTRun *tracks) } aClustersFile->cd();//set cluster file active - AliTPCParam *TPCParam= (AliTPCParam*)aClustersFile->Get("75x40_100x60"); + AliTPCParam *TPCParam= (AliTPCParam*)aClustersFile->Get("75x40_100x60_150x60"); if (!TPCParam) { - Error("Read","TPC parameters have not been found !\n"); - currentdir++; - continue; + TPCParam= (AliTPCParam*)aClustersFile->Get("75x40_100x60"); + if (!TPCParam) + { + Error("Read","TPC parameters have not been found !\n"); + currentdir++; + continue; + } }