]> git.uio.no Git - u/mrichter/AliRoot.git/blame - test/genkine/sim/rec.C
Extacting the OCDB in a separate module. The detectors have write permission in the...
[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()));
2ded75c3 8
3928b038 9 TStopwatch timer;
10 timer.Start();
11 reco.Run();
12 timer.Stop();
13 timer.Print();
14}