From: schutz Date: Wed, 28 Jan 2009 08:51:08 +0000 (+0000) Subject: enabled QA X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=commitdiff_plain;h=e98db466e548e36096761732039b82d4561b7380 enabled QA --- diff --git a/test/ppbench/rec.C b/test/ppbench/rec.C index 6da03f96caf..f44ec250c37 100644 --- a/test/ppbench/rec.C +++ b/test/ppbench/rec.C @@ -8,6 +8,15 @@ void rec() { reco.SetSpecificStorage("GRP/GRP/Data", Form("local://%s",gSystem->pwd())); + reco.SetRunQA("ALL:ALL") ; + + AliQA::SetQARefStorage("local://$ALICE_ROOT") ; + + for (Int_t det = 0 ; det < AliQA::kNDET ; det++) { + reco.SetQACycles(det, 999) ; + reco.SetQAWriteExpert(det) ; + } + TStopwatch timer; timer.Start(); reco.Run(); diff --git a/test/ppbench/sim.C b/test/ppbench/sim.C index 8cc6a254a2c..bdeb38dfde4 100644 --- a/test/ppbench/sim.C +++ b/test/ppbench/sim.C @@ -7,7 +7,13 @@ void sim(Int_t nev=20) { simulator.SetDefaultStorage("local://$ALICE_ROOT"); simulator.SetSpecificStorage("GRP/GRP/Data", Form("local://%s",gSystem->pwd())); - + simulator.SetRunQA("ALL:ALL") ; + AliQA::SetQARefStorage("local://$ALICE_ROOT") ; + + for (Int_t det = 0 ; det < AliQA::kNDET ; det++) { + simulator.SetQACycles(det, nev+1) ; + } + TStopwatch timer; timer.Start(); simulator.Run(nev);