]> git.uio.no Git - u/mrichter/AliRoot.git/blob - test/vmctest/gun/runtest.sh
Update master to aliroot
[u/mrichter/AliRoot.git] / test / vmctest / gun / runtest.sh
1 #!/bin/sh
2 # $Id$
3
4 # Before running this script, you should run rungen.sh first.
5
6 NEVENTS=5
7 G3CONFIG="$ALICE_ROOT/test/vmctest/gun/g3Config.C" 
8 G4CONFIG="$ALICE_ROOT/test/vmctest/gun/g4Config.C" 
9
10 G3OUTDIR=g3
11 G4OUTDIR=g4
12
13 RUNG3=1
14 RUNG4=1
15
16 if [ "$RUNG3" = "1" ]; then 
17   rm -rf *.root *.dat *.log fort* hlt hough raw* recraw/*.root recraw/*.log
18   aliroot -b -q  sim.C\($NEVENTS,\""$G3CONFIG"\"\)  2>&1 | tee sim.log
19   aliroot -b -q rec.C      2>&1 | tee rec.log
20   rm -fr $G3OUTDIR
21   mkdir $G3OUTDIR
22   mv *.root *.log GRP $G3OUTDIR
23   cp g3Config.C $G3OUTDIR
24 fi
25
26 if [ "$RUNG4" = "1" ]; then 
27   rm -rf *.root *.dat *.log fort* hlt hough raw* recraw/*.root recraw/*.log
28   aliroot -b -q  sim.C\($NEVENTS,\""$G4CONFIG"\"\)  2>&1 | tee sim.log
29   aliroot -b -q rec.C      2>&1 | tee rec.log
30   rm -fr $G4OUTDIR
31   mkdir $G4OUTDIR
32   mv *.root *.log *.rndm GRP $G4OUTDIR
33   cp g4Config.C $G4OUTDIR
34 fi