]> git.uio.no Git - u/mrichter/AliRoot.git/blob - test/pploadlibs/rec.C
correct for the reconstruction of raw
[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
14   TStopwatch timer;
15   timer.Start();
16   reco.Run();
17   timer.Stop();
18   timer.Print();
19 }