]> git.uio.no Git - u/mrichter/AliRoot.git/blame - test/genkine/sim/rec.C
Fixing bug #59470
[u/mrichter/AliRoot.git] / test / genkine / sim / rec.C
CommitLineData
3928b038 1void rec() {
2 AliReconstruction reco;
3
3928b038 4
162637e4 5 reco.SetDefaultStorage("local://$ALICE_ROOT/OCDB");
fba5a2bd 6 reco.SetSpecificStorage("GRP/GRP/Data",
7 Form("local://%s",gSystem->pwd()));
b5688f53 8 reco.SetRunPlaneEff(kTRUE);
2ded75c3 9
3928b038 10 TStopwatch timer;
11 timer.Start();
12 reco.Run();
13 timer.Stop();
14 timer.Print();
15}