]> git.uio.no Git - u/mrichter/AliRoot.git/blob - test/genkine/sim/sim.C
Using GRP instead of local setters. Check of the created ESDs, production of standard...
[u/mrichter/AliRoot.git] / test / genkine / sim / sim.C
1 void sim(Int_t nev=1) {
2   AliSimulation simulator;
3
4   simulator.SetDefaultStorage("local://$ALICE_ROOT");
5   simulator.SetSpecificStorage("GRP/GRP/Data",
6                                Form("local://%s",gSystem->pwd()));
7
8   TStopwatch timer;
9   timer.Start();
10   simulator.Run(nev);
11   timer.Stop();
12   timer.Print();
13 }