]> git.uio.no Git - u/mrichter/AliRoot.git/blame - test/generators/therminator/rec.C
Update master to aliroot
[u/mrichter/AliRoot.git] / test / generators / therminator / rec.C
CommitLineData
97bd8e56 1void rec() {
97bd8e56 2 AliReconstruction reco;
3
4 reco.SetWriteESDfriend();
5 reco.SetWriteAlignmentData();
6
7 reco.SetDefaultStorage("local://$ALICE_ROOT/OCDB");
8 reco.SetSpecificStorage("GRP/GRP/Data",
9 Form("local://%s",gSystem->pwd()));
10
97bd8e56 11 TStopwatch timer;
12 timer.Start();
13 reco.Run();
14 timer.Stop();
15 timer.Print();
16}