]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - test/PbPbbench/rec.C
Fix for report #69877: High memory consumption for simulation of HIJING central PbPb...
[u/mrichter/AliRoot.git] / test / PbPbbench / rec.C
index 8048e790729f7318e9bd948fb7beb05e6a97a43e..b5e234cca8d180919847c46896420c20b0549f8a 100644 (file)
@@ -7,15 +7,24 @@ void rec() {
   reco.SetDefaultStorage("local://$ALICE_ROOT/OCDB");
   reco.SetSpecificStorage("GRP/GRP/Data",
                          Form("local://%s",gSystem->pwd()));
+  reco.SetSpecificStorage("VZERO/Calib/Data",
+                         "local://$ALICE_ROOT/OCDB/VZERO/PbPb");
   reco.SetRunQA("ALL:ALL") ;
   
   reco.SetQARefDefaultStorage("local://$ALICE_ROOT/QAref") ;
+  reco.SetRunPlaneEff(kTRUE);
   
   for (Int_t det = 0 ; det < AliQA::kNDET ; det++) {
     reco.SetQACycles(det, 999) ;
     reco.SetQAWriteExpert(det) ; 
   }
 
+  // High multiplicity settings
+  Double_t cuts[]={33, 0.1, 0.1, 0.05, 0.99, 0.9, 100}; 
+  AliV0vertexer::SetDefaultCuts(cuts); 
+  Double_t cts[]={33., 0.05, 0.008, 0.035, 0.1, 0.9985, 0.9,100}; 
+  AliCascadeVertexer::SetDefaultCuts(cts); 
+
   TStopwatch timer;
   timer.Start();
   reco.Run();