From 4f543b2feaf125022621d2f7dc16a14fc3a48350 Mon Sep 17 00:00:00 2001 From: marian Date: Wed, 12 Jul 2006 12:31:17 +0000 Subject: [PATCH] (Marian) --- TPC/recTPC.C | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/TPC/recTPC.C b/TPC/recTPC.C index 4441832dc2c..d0f987a8023 100644 --- a/TPC/recTPC.C +++ b/TPC/recTPC.C @@ -22,9 +22,9 @@ void recTPC(Int_t type, const char *filename="data.root") // AliLog::SetClassDebugLevel("AliTPCclustererMI",2); AliTPCRecoParam * tpcRecoParam = 0; - if (type=0) AliTPCRecoParam::GetCosmicTestParam(kTRUE); - if (type>0) AliTPCRecoParam::GetLaserTestParam(kTRUE); - + if (type==0) tpcRecoParam = AliTPCRecoParam::GetCosmicTestParam(kTRUE); + if (type>0) tpcRecoParam = AliTPCRecoParam::GetLaserTestParam(kTRUE); + tpcRecoParam->Dump(); AliTPCReconstructor::SetRecoParam(tpcRecoParam); AliTPCReconstructor::SetStreamLevel(1); // @@ -64,8 +64,8 @@ void recTracking(Int_t type, const char *filename="data.root", Int_t nevents=1) AliLog::SetClassDebugLevel("AliTPCclustererMI",2); AliTPCRecoParam * tpcRecoParam = 0; - if (type=0) AliTPCRecoParam::GetCosmicTestParam(kTRUE); - if (type>0) AliTPCRecoParam::GetLaserTestParam(kTRUE); + if (type==0) tpcRecoParam = AliTPCRecoParam::GetCosmicTestParam(kTRUE); + if (type>0) tpcRecoParam = AliTPCRecoParam::GetLaserTestParam(kTRUE); AliTPCReconstructor::SetRecoParam(tpcRecoParam); AliTPCReconstructor::SetStreamLevel(1); -- 2.39.3