]> git.uio.no Git - u/mrichter/AliRoot.git/blame - test/embedding/rec.C
Changes to take into account new entry in logbook_shuttle table in DAQ db.
[u/mrichter/AliRoot.git] / test / embedding / rec.C
CommitLineData
2858736f 1void rec(Int_t embrun=0) {\r
2 new AliRun("gAlice","The ALICE Off-line Simulation Framework");\r
3 AliReconstruction reco;\r
4 reco.SetUniformFieldTracking(kFALSE);\r
5 reco.SetWriteESDfriend(kTRUE);\r
6 reco.SetWriteAlignmentData(kFALSE);\r
7 AliTPCRecoParam * tpcRecoParam = AliTPCRecoParam::GetLowFluxParam();\r
8 AliTPCReconstructor::SetRecoParam(tpcRecoParam);\r
9 AliTPCReconstructor::SetStreamLevel(0);\r
10 reco.SetRunReconstruction("ITS TPC TRD TOF");\r
11 reco.SetDefaultStorage("alien://Folder=/alice/simulation/2008/v4-12-Release/Ideal/");\r
12 reco.SetRunQA(kFALSE);\r
13 reco.SetRunGlobalQA(kFALSE);\r
14\r
15 TStopwatch timer;\r
16 timer.Start();\r
17 reco.Run();\r
18 timer.Stop();\r
19 timer.Print();\r
20}\r