]> git.uio.no Git - u/mrichter/AliRoot.git/blame - test/pploadlibs/rec.C
Reverting previous change
[u/mrichter/AliRoot.git] / test / pploadlibs / rec.C
CommitLineData
3928b038 1void rec() {
9b5a9d72 2 gROOT->Macro("loadlibsrec.C");
3 new AliRun("gAlice","The ALICE Off-line Simulation Framework");
7fb59432 4
3928b038 5 AliReconstruction reco;
2ded75c3 6
3928b038 7 reco.SetWriteESDfriend();
8 reco.SetWriteAlignmentData();
16b2f4a1 9
162637e4 10 reco.SetDefaultStorage("local://$ALICE_ROOT/OCDB");
16b2f4a1 11 reco.SetSpecificStorage("GRP/GRP/Data",
12 Form("local://%s",gSystem->pwd()));
2ded75c3 13
3928b038 14 TStopwatch timer;
15 timer.Start();
16 reco.Run();
17 timer.Stop();
18 timer.Print();
19}