]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - test/PbPbbench/rec.C
QADataMaker gets the event specie fro AliDetectorRecoParam
[u/mrichter/AliRoot.git] / test / PbPbbench / rec.C
index 2a9a5a3a7bcc697f6db4fac71cd77f1db88c982f..09419d34b00e89c99cdc1c78776d603f511444a7 100644 (file)
@@ -4,12 +4,12 @@ void rec() {
   reco.SetWriteESDfriend();
   reco.SetWriteAlignmentData();
 
-  reco.SetDefaultStorage("local://$ALICE_ROOT");
+  reco.SetDefaultStorage("local://$ALICE_ROOT/OCDB");
   reco.SetSpecificStorage("GRP/GRP/Data",
                          Form("local://%s",gSystem->pwd()));
   reco.SetRunQA("ALL:ALL") ;
   
-  AliQA::SetQARefStorage("local://$ALICE_ROOT") ;
+  reco.SetQARefDefaultStorage("local://$ALICE_ROOT/QAref") ;
   
   for (Int_t det = 0 ; det < AliQA::kNDET ; det++) {
     reco.SetQACycles(det, 999) ;
@@ -19,6 +19,7 @@ void rec() {
   TStopwatch timer;
   timer.Start();
   reco.Run();
+  reco.MergeQA() ; 
   timer.Stop();
   timer.Print();
 }