git://git.uio.no
/
u
/
mrichter
/
AliRoot.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Removing .cvsignore files
[u/mrichter/AliRoot.git]
/
test
/
ppbench
/
sim.C
1
void sim(Int_t nev=20) {
2
AliSimulation simulator;
3
simulator.SetMakeSDigits("TRD TOF PHOS HMPID EMCAL MUON FMD ZDC PMD T0 VZERO");
4
simulator.SetMakeDigitsFromHits("ITS TPC");
5
simulator.SetWriteRawData("ALL","raw.root",kTRUE);
6
7
TStopwatch timer;
8
timer.Start();
9
simulator.Run(nev);
10
timer.Stop();
11
timer.Print();
12
}