]> git.uio.no Git - u/mrichter/AliRoot.git/blame - test/vmctest/gun/rec.C
updates from Salvatore
[u/mrichter/AliRoot.git] / test / vmctest / gun / rec.C
CommitLineData
267e5cd8 1// $Id$
2//
3// Macro for running reconstruction in test/vmctest/gun.
4// From test/gun.
5
6void 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()));
c05b5bd1 15 reco.SetRunPlaneEff(kTRUE);
16
17 reco.SetFractionFriends(1.);
267e5cd8 18
19 TStopwatch timer;
20 timer.Start();
21 reco.Run();
22 timer.Stop();
23 timer.Print();
24}