]> git.uio.no Git - u/mrichter/AliRoot.git/blob - test/QA/rec.C
Additional patch for #83850: Please consider deprecating CINTAUTOLINK (Christian)
[u/mrichter/AliRoot.git] / test / QA / rec.C
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