]> git.uio.no Git - u/mrichter/AliRoot.git/blob - test/PbPbbench/rec.C
Adding comments; in Config.C added a variable g4libsMacro to make easier to
[u/mrichter/AliRoot.git] / test / PbPbbench / rec.C
1 void rec() {
2   AliReconstruction reco;
3
4   reco.SetWriteESDfriend();
5   reco.SetWriteAlignmentData();
6
7   reco.SetDefaultStorage("local://$ALICE_ROOT/OCDB");
8   reco.SetSpecificStorage("GRP/GRP/Data",
9                           Form("local://%s",gSystem->pwd()));
10   reco.SetSpecificStorage("VZERO/Calib/Data",
11                           "local://$ALICE_ROOT/OCDB/VZERO/PbPb");
12   reco.SetRunQA("ALL:ALL") ;
13   
14   reco.SetQARefDefaultStorage("local://$ALICE_ROOT/QAref") ;
15   reco.SetRunPlaneEff(kTRUE);
16   
17   for (Int_t det = 0 ; det < AliQA::kNDET ; det++) {
18     reco.SetQACycles(det, 999) ;
19     reco.SetQAWriteExpert(det) ; 
20   }
21
22   TStopwatch timer;
23   timer.Start();
24   reco.Run();
25   timer.Stop();
26   timer.Print();
27 }