]> git.uio.no Git - u/mrichter/AliRoot.git/blob - test/fpprod/sim.C
Using the new signature of SetQA and SetRunQA
[u/mrichter/AliRoot.git] / test / fpprod / sim.C
1 void sim(Int_t nev=20) {
2
3   AliSimulation simulator;
4   simulator.SetMakeSDigits("TRD TOF PHOS HMPID EMCAL MUON FMD ZDC PMD T0 VZERO");
5   simulator.SetMakeDigitsFromHits("ITS TPC");
6   simulator.SetWriteRawData("ALL","raw.root",kTRUE);
7   simulator.SetRunHLT("");
8   simulator.SetRunQA("");
9  
10   TStopwatch timer;
11   timer.Start();
12   simulator.Run(nev);
13   timer.Stop();
14   timer.Print();
15 }