]> git.uio.no Git - u/mrichter/AliRoot.git/blob - test/pploadlibs/rec.C
Merge branch 'TPCdev' of https://git.cern.ch/reps/AliRoot into TPCdev
[u/mrichter/AliRoot.git] / test / pploadlibs / rec.C
1 void rec() {
2   new AliRun("gAlice","The ALICE Off-line Simulation Framework");
3
4   AliReconstruction reco;
5
6   reco.SetRunReconstruction("ALL");
7
8   reco.SetWriteESDfriend();
9   reco.SetWriteAlignmentData();
10
11   reco.SetDefaultStorage("local://$ALICE_ROOT/OCDB");
12   reco.SetSpecificStorage("GRP/GRP/Data",
13                           Form("local://%s",gSystem->pwd()));
14   reco.SetRunPlaneEff(kTRUE);
15
16   TStopwatch timer;
17   timer.Start();
18   reco.Run();
19   timer.Stop();
20   timer.Print();
21 }