]> git.uio.no Git - u/mrichter/AliRoot.git/blame - test/gun/rec.C
Finish the move RICH to HMPID
[u/mrichter/AliRoot.git] / test / gun / rec.C
CommitLineData
3928b038 1void rec() {
2 AliReconstruction reco;
3 reco.SetUniformFieldTracking(kFALSE);
4 reco.SetWriteESDfriend();
5 reco.SetWriteAlignmentData();
6 AliTPCReconstructor::SetStreamLevel(1);
7 // AliTPCReconstructor::SetRecoParam(AliTPCRecoParam::GetLowFluxParam());
8 // reco.SetInput("raw.root");
9 // reco.SetRunReconstruction("ITS TPC TRD TOF HMPID PHOS EMCAL MUON T0 VZERO FMD PMD ZDC");
3928b038 10
11 AliCDBManager::Instance()->SetCacheFlag(kFALSE);
12
13
14 TStopwatch timer;
15 timer.Start();
16 reco.Run();
17 timer.Stop();
18 timer.Print();
19}