]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EPOS/epos167/epos-
ALIROOT-5836 AliESDpid not respecting the AliVTrack interface (patch from Mihaela)
[u/mrichter/AliRoot.git] / EPOS / epos167 / epos-
CommitLineData
9ef1c2d9 1#!/bin/csh
2#################################################################
3# script to run epos ; argumentS: file name ; version number
4#################################################################
5
6if ( -e $OPT/$1.optns ) then
7else
8echo $OPT/$1.optns "does not exist"
9exit
10endif
11
12rm -f $CHK/z-$1.check
13rm -f $CHK/z-$1.data
14rm -f $CHK/z-$1.copy
15rm -f $CHK/z-$1.log
16
17if ( $OPT == '.' ) then
18 setenv odir `pwd`
19else
20 setenv odir $OPT
21endif
22
23#---------------------------------------------------------------------
24time $OBJ/$SYSTEM/Xepos -n << END
25echo off
26set seedj $seedj
27fname pathnx $EPO/
28fname histo $HTO/.s/z-$1.histo
29fname check $CHK/z-$1.check
30fname copy $CHK/z-$1.copy
31fname log $CHK/z-$1.log
32fname data $CHK/z-$1.data
33fname initl $EPO/epos.initl
34fname inidi $EPO/epos.inidi
35fname inidr $EPO/epos.inidr
36fname iniev $EPO/epos.iniev
37fname inirj $EPO/epos.inirj
38fname inics $EPO/epos.inics
39fname inigrv $EPO/epos.inigrv
40fqgsjet dat $EPO/qgsjet/qgsjet.dat
41fqgsjet ncs $EPO/qgsjet/qgsjet.ncs
42fqgsjetII dat $EPO/qgsjetII/qgsdat-II-03
43fqgsjetII ncs $EPO/qgsjetII/sectnu-II-03
44nodecay 120
45nodecay -120
46nodecay 130
47nodecay -130
48nodecay -20
49nodecay 14
50nodecay -14
51echo on
52input $odir/$1.optns
53echo off
54input $EPO/epos.param
55runprogram
56stopprogram
57END
58if ( -s $CHK/z-$1.data ) then
59 echo "###############################################################"
60 echo " output written to $CHK/z-$1.data"
61 echo "###############################################################"
62else
63 rm -f $CHK/z-$1.data
64endif
65if ( -s $CHK/z-$1.check ) then
66else
67 rm -f $CHK/z-$1.check
68endif
69if ( -s $HTO/.s/z-$1.histo ) then
70else
71 rm -f $HTO/.s/z-$1.histo
72endif
73rm -f $CHK/z-$1.log
74rm -f $CHK/z-$1.copy
75rm -f gmon.out
76echo -n "Worker (nanpcw41-nanpcw65) : "
77hostname
78date
79exit
80