]> git.uio.no Git - u/mrichter/AliRoot.git/blob - test/vmctest/gun/rec.C
In vmctest:
[u/mrichter/AliRoot.git] / test / vmctest / gun / rec.C
1 // $Id$
2 //
3 // Macro for running reconstruction in test/vmctest/gun.
4 // From test/gun. 
5
6 void rec() {
7   AliReconstruction reco;
8
9   reco.SetWriteESDfriend();
10   reco.SetWriteAlignmentData();
11
12   reco.SetDefaultStorage("local://$ALICE_ROOT/OCDB");
13   reco.SetSpecificStorage("GRP/GRP/Data",
14                           Form("local://%s",gSystem->pwd()));
15
16   TStopwatch timer;
17   timer.Start();
18   reco.Run();
19   timer.Stop();
20   timer.Print();
21 }