]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
added raw.root as input for AliReconstruction
authorschutz <schutz@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 24 Jun 2008 12:28:26 +0000 (12:28 +0000)
committerschutz <schutz@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 24 Jun 2008 12:28:26 +0000 (12:28 +0000)
test/QA/rec.C

index 7dc20e5def6e2c07d4e501412856f98bba2424ef..4597245a2ab3fc0b65fe12a484ce3bb7877421d1 100644 (file)
@@ -14,7 +14,7 @@ void rec() {
   AliTPCReconstructor::SetRecoParam(tpcRecoParam);
   AliTPCReconstructor::SetStreamLevel(0);
   reco.SetRunReconstruction("ITS TPC TRD TOF HMPID PHOS EMCAL MUON T0 VZERO FMD PMD ZDC");
-  //reco.SetInput("raw.root") ;
+  //Reco.SetInput("raw.root") ;
   //AliPHOSRecoParam* recEmc = new AliPHOSRecoParamEmc();
   //   recEmc->SetSubtractPedestals(kFALSE);
   //   AliPHOSReconstructor::SetRecoParamEmc(recEmc);  
@@ -34,7 +34,7 @@ void rec() {
 
   TStopwatch timer;
   timer.Start();
-  reco.Run();
+  reco.Run("raw.root");
   timer.Stop();
   timer.Print();
 }