| 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 | AliQA::SetQARefStorage("local://$ALICE_ROOT/OCDB") ; |
| 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 | } |