]> git.uio.no Git - u/mrichter/AliRoot.git/blame - test/merge/backgr/rec.C
Recover the AOD test
[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()));
a143c29a 10 reco.SetSpecificStorage("VZERO/Calib/Data",
11 "local://$ALICE_ROOT/OCDB/VZERO/PbPb");
b5688f53 12 reco.SetRunPlaneEff(kTRUE);
29451c4c 13
3928b038 14 TStopwatch timer;
15 timer.Start();
16 reco.Run();
17 timer.Stop();
18 timer.Print();
19}