]> git.uio.no Git - u/mrichter/AliRoot.git/blob - test/vmctest/production/rec.C
Adding comments; in Config.C added a variable g4libsMacro to make easier to
[u/mrichter/AliRoot.git] / test / vmctest / production / rec.C
1 // $Id$\r
2 \r
3 void 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