]> git.uio.no Git - u/mrichter/AliRoot.git/blame - test/gun/rec.C
Revert changes from rev. 30849
[u/mrichter/AliRoot.git] / test / gun / rec.C
CommitLineData
3928b038 1void rec() {
2 AliReconstruction reco;
2ded75c3 3
3928b038 4 reco.SetWriteESDfriend();
5 reco.SetWriteAlignmentData();
d79ed896 6
162637e4 7 reco.SetDefaultStorage("local://$ALICE_ROOT/OCDB");
d79ed896 8 reco.SetSpecificStorage("GRP/GRP/Data",
9 Form("local://%s",gSystem->pwd()));
3928b038 10
11 TStopwatch timer;
12 timer.Start();
13 reco.Run();
14 timer.Stop();
15 timer.Print();
16}