]> git.uio.no Git - u/mrichter/AliRoot.git/blame - test/vmctest/production/rec.C
Changes related to PID mode and parameters configuration (Rossella, Francesco)
[u/mrichter/AliRoot.git] / test / vmctest / production / rec.C
CommitLineData
ba2958c4 1// $Id$\r
2\r
b2b18d9e 3void rec() {\r
4\r
5 AliReconstruction reco;\r
6// switch off cleanESD\r
7 reco.SetCleanESD(kFALSE);\r
8\r
9 \r
10 reco.SetWriteESDfriend();\r
11 reco.SetWriteAlignmentData();\r
12 reco.SetRunQA("kFALSE:kFALSE");\r
13 \r
14 reco.SetRunPlaneEff(kTRUE);\r
15 reco.SetDefaultStorage("local://$ALICE_ROOT/OCDB");\r
16 \r
17 reco.SetSpecificStorage("GRP/GRP/Data",\r
18 Form("local://%s",gSystem->pwd()));\r
19\r
20\r
21 TStopwatch timer;\r
22 timer.Start();\r
23 reco.Run();\r
24 timer.Stop();\r
25 timer.Print();\r
26}\r