]> git.uio.no Git - u/mrichter/AliRoot.git/blame - test/genkine/sim/sim.C
Extacting the OCDB in a separate module. The detectors have write permission in the...
[u/mrichter/AliRoot.git] / test / genkine / sim / sim.C
CommitLineData
3928b038 1void sim(Int_t nev=1) {
2 AliSimulation simulator;
3
162637e4 4 simulator.SetDefaultStorage("local://$ALICE_ROOT/OCDB");
fba5a2bd 5 simulator.SetSpecificStorage("GRP/GRP/Data",
6 Form("local://%s",gSystem->pwd()));
7
3928b038 8 TStopwatch timer;
9 timer.Start();
10 simulator.Run(nev);
11 timer.Stop();
12 timer.Print();
13}