]> git.uio.no Git - u/mrichter/AliRoot.git/blame - test/ppbench/rec.C
AliRsnReader:
[u/mrichter/AliRoot.git] / test / ppbench / rec.C
CommitLineData
27b7c1fb 1void rec() {
2 AliReconstruction reco;
3
27b7c1fb 4 reco.SetWriteESDfriend();
5 reco.SetWriteAlignmentData();
27b7c1fb 6
50258ad8 7 reco.SetDefaultStorage("local://$ALICE_ROOT");
8 reco.SetSpecificStorage("GRP/GRP/Data",
9 Form("local://%s",gSystem->pwd()));
2ded75c3 10
e98db466 11 reco.SetRunQA("ALL:ALL") ;
12
13 AliQA::SetQARefStorage("local://$ALICE_ROOT") ;
14
15 for (Int_t det = 0 ; det < AliQA::kNDET ; det++) {
16 reco.SetQACycles(det, 999) ;
17 reco.SetQAWriteExpert(det) ;
18 }
19
27b7c1fb 20 TStopwatch timer;
21 timer.Start();
22 reco.Run();
23 timer.Stop();
24 timer.Print();
25}