]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - test/QA/rec.C
- new function GetMeanSM to get the sm mean values (needed to select notcalibrated...
[u/mrichter/AliRoot.git] / test / QA / rec.C
... / ...
CommitLineData
1 void rec() {
2
3 AliReconstruction reco;
4
5 reco.SetWriteESDfriend();
6 reco.SetWriteAlignmentData();
7 reco.SetDefaultStorage("local://$ALICE_ROOT/OCDB");
8 reco.SetSpecificStorage("GRP/GRP/Data",
9 Form("local://%s",gSystem->pwd()));
10 reco.SetRunPlaneEff(kTRUE);
11
12 AliTPCReconstructor::SetStreamLevel(1);
13
14 reco.SetRunQA("ALL:ALL") ;
15
16 reco.SetQARefDefaultStorage("local://$ALICE_ROOT/OCDB") ;
17
18 for (Int_t det = 0 ; det < AliQA::kNDET ; det++) {
19 reco.SetQACycles(det, 999) ;
20 reco.SetQAWriteExpert(det) ;
21 }
22
23 TStopwatch timer;
24 timer.Start();
25 reco.Run("raw.root");
26 timer.Stop();
27 timer.Print();
28}
29