]> git.uio.no Git - u/mrichter/AliRoot.git/blob - test/pploadlibs/rec.C
Transition to PWG new names scheme
[u/mrichter/AliRoot.git] / test / pploadlibs / rec.C
1 void rec() {
2   gROOT->Macro("loadlibsrec.C");
3   new AliRun("gAlice","The ALICE Off-line Simulation Framework");
4
5   AliReconstruction reco;
6
7   reco.SetWriteESDfriend();
8   reco.SetWriteAlignmentData();
9
10   reco.SetDefaultStorage("local://$ALICE_ROOT/OCDB");
11   reco.SetSpecificStorage("GRP/GRP/Data",
12                           Form("local://%s",gSystem->pwd()));
13   reco.SetRunPlaneEff(kTRUE);
14
15   TStopwatch timer;
16   timer.Start();
17   reco.Run();
18   timer.Stop();
19   timer.Print();
20 }