]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - test/pploadlibs/runtest.sh
Keep the syswatch from the simulation
[u/mrichter/AliRoot.git] / test / pploadlibs / runtest.sh
... / ...
CommitLineData
1#!/bin/sh
2
3if [ "$ALICE_TARGET" = "win32gcc" ]
4 then
5 REXE=root_exe.exe
6else
7 REXE=root.exe
8fi
9
10rm -rf *.root *.dat *.log fort* hlt hough raw* *~
11
12${REXE} -b -q sim.C 2>&1 | tee sim.log
13mv syswatch.log simwatch.log
14${REXE} -b -q rec.C 2>&1 | tee rec.log
15mv syswatch.log recwatch.log
16${REXE} -b -q ${ALICE_ROOT}/STEER/CreateAODfromESD.C 2>&1 | tee aod.log
17
18
19
20