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