]> git.uio.no Git - u/mrichter/AliRoot.git/blob - 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
1 void rec() {
2   AliReconstruction reco;
3
4
5   reco.SetDefaultStorage("local://$ALICE_ROOT/OCDB");
6   reco.SetSpecificStorage("GRP/GRP/Data",
7                           Form("local://%s",gSystem->pwd()));
8
9   TStopwatch timer;
10   timer.Start();
11   reco.Run();
12   timer.Stop();
13   timer.Print();
14 }