]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - test/gun/rec.C
This commit was generated by cvs2svn to compensate for changes in r17912,
[u/mrichter/AliRoot.git] / test / gun / rec.C
diff --git a/test/gun/rec.C b/test/gun/rec.C
new file mode 100644 (file)
index 0000000..a580f24
--- /dev/null
@@ -0,0 +1,20 @@
+void rec() {
+  AliReconstruction reco;
+  reco.SetUniformFieldTracking(kFALSE);
+  reco.SetWriteESDfriend();
+  reco.SetWriteAlignmentData();
+  AliTPCReconstructor::SetStreamLevel(1);
+  //  AliTPCReconstructor::SetRecoParam(AliTPCRecoParam::GetLowFluxParam());
+  //  reco.SetInput("raw.root");
+  //  reco.SetRunReconstruction("ITS TPC TRD TOF HMPID PHOS EMCAL MUON T0 VZERO FMD PMD ZDC");
+  //reco.SetRunReconstruction("ITS TPC TRD TOF RICH PHOS EMCAL START VZERO FMD PMD ZDC");
+  AliCDBManager::Instance()->SetCacheFlag(kFALSE);
+
+  TStopwatch timer;
+  timer.Start();
+  reco.Run();
+  timer.Stop();
+  timer.Print();
+}