]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/UPGRADE/testITSU/sim.C
clusterizer,reconstructor + many fixes (Magnus,Stefan)
[u/mrichter/AliRoot.git] / ITS / UPGRADE / testITSU / sim.C
1 void sim(Int_t nev=3) {
2
3   gSystem->Exec(" rm *.root ");
4   AliSimulation simulator;
5   //  simulator.SetMakeSDigits("");
6
7   //  simulator.SetMakeDigits("");
8
9   simulator.SetDefaultStorage("local://$ALICE_ROOT/OCDB");
10   simulator.SetSpecificStorage("GRP/GRP/Data",
11                                Form("local://%s",gSystem->pwd()));
12   simulator.SetSpecificStorage("ITS/Align/Data",
13                                Form("local://%s",gSystem->pwd()));
14   simulator.SetRunHLT("");
15   simulator.SetRunQA(":");
16
17   TStopwatch timer;
18   timer.Start();
19   simulator.Run(nev);
20   timer.Stop();
21   timer.Print();
22 }