]> git.uio.no Git - u/mrichter/AliRoot.git/blob - test/merge/backgr/rec.C
The present commit corresponds to an important change in the way the
[u/mrichter/AliRoot.git] / test / merge / backgr / rec.C
1 void rec() {
2
3   AliReconstruction reco;
4   reco.SetWriteESDfriend();
5   reco.SetWriteAlignmentData();
6
7   reco.SetDefaultStorage("local://$ALICE_ROOT");
8   reco.SetSpecificStorage("GRP/GRP/Data",
9                           Form("local://%s",gSystem->pwd()));
10  
11   TStopwatch timer;
12   timer.Start();
13   reco.Run();
14   timer.Stop();
15   timer.Print();
16 }