]> git.uio.no Git - u/mrichter/AliRoot.git/blame - test/vmctest/ppbench/rec.C
In vmctest/gun:
[u/mrichter/AliRoot.git] / test / vmctest / ppbench / rec.C
CommitLineData
e6dc94be 1// $Id$
2//
3// Macro for running reconstruction in test/vmctest/ppbench.
4// From test/ppbench.
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()));
15 reco.SetRunPlaneEff(kTRUE);
16
17 reco.SetRunQA("ALL:ALL") ;
18
19 reco.SetQARefDefaultStorage("local://$ALICE_ROOT/QAref") ;
20
21 for (Int_t det = 0 ; det < AliQA::kNDET ; det++) {
22 reco.SetQACycles(det, 999) ;
23 reco.SetQAWriteExpert(det) ;
24 }
25
26 TStopwatch timer;
27 timer.Start();
28 reco.Run();
29 timer.Stop();
30 timer.Print();
31}