]> git.uio.no Git - u/mrichter/AliRoot.git/blob - test/PbPbbench/sim.C
b366b893af45c7aadbed68cb224e2953c6f00865
[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.SetSpecificStorage("VZERO/Calib/Data",
11                                "local://$ALICE_ROOT/OCDB/VZERO/PbPb");
12   simulator.SetRunQA("ALL:ALL") ; 
13   simulator.SetQARefDefaultStorage("local://$ALICE_ROOT/QAref") ;
14   
15   for (Int_t det = 0 ; det < AliQA::kNDET ; det++) {
16     simulator.SetQACycles(det, nev+1) ;
17   }
18   TStopwatch timer;
19   timer.Start();
20   simulator.Run(nev);
21   timer.Stop();
22   timer.Print();
23 }