git://git.uio.no
/
u
/
mrichter
/
AliRoot.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Do not use Root shell but bash to run the simulation and reconstruction
[u/mrichter/AliRoot.git]
/
test
/
pploadlibs
/
runtest.sh
1
#!/bin/sh
2
3
if [ "$ALICE_TARGET" = "win32gcc" ]
4
then
5
REXE=root_exe.exe
6
else
7
REXE=root.exe
8
fi
9
10
rm -rf *.root *.dat *.log fort* hlt hough raw* *~
11
12
${REXE} -b -q sim.C 2>&1 | tee sim.log
13
${REXE} -b -q rec.C 2>&1 | tee rec.log
14
${REXE} -b -q ${ALICE_ROOT}/STEER/CreateAODfromESD.C 2>&1 | tee aod.log
15
16
17
18