]> git.uio.no Git - u/mrichter/AliRoot.git/blob - test/PbPbbench/sim.C
remove overlaping calibration file
[u/mrichter/AliRoot.git] / test / PbPbbench / sim.C
1 void sim(Int_t nev=1) {
2   AliSimulation simulator;
3   if (gSystem->Getenv("EVENT"))
4    nev = atoi(gSystem->Getenv("EVENT")) ;   
5   simulator.SetWriteRawData("ALL","raw.root",kTRUE);
6
7   simulator.SetDefaultStorage("local://$ALICE_ROOT/OCDB");
8   simulator.SetSpecificStorage("GRP/GRP/Data",
9                                Form("local://%s",gSystem->pwd()));
10   simulator.SetRunQA("ALL:ALL") ; 
11   simulator.SetQARefDefaultStorage("local://$ALICE_ROOT/QAref") ;
12   
13   for (Int_t det = 0 ; det < AliQA::kNDET ; det++) {
14     simulator.SetQACycles(det, nev+1) ;
15   }
16   TStopwatch timer;
17   timer.Start();
18   simulator.Run(nev);
19   timer.Stop();
20   timer.Print();
21 }