blob: f6e84a0d81c8c3a9ea91da36fd914de5749b6eb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
--- gamess/rungms 2005-11-10 22:03:42.000000000 +0000
+++ gamess-new//rungms 2005-12-02 18:47:25.000000000 +0000
@@ -54,7 +54,7 @@
# of using LoadLeveler via a "llgms" front end in ~/gamess/misc.
#
set TARGET=sockets
-set SCR=/scr/$USER
+set SCR=`pwd`
#
set JOB=$1 # name of the input file xxx.inp, give only the xxx part
set VERNO=$2 # revision number of the executable created by 'lked' step
@@ -113,13 +113,13 @@
#
set echo
# three ASCII input files (see explanation above)
-setenv ERICFMT ~mike/gamess/ericfmt.dat
-setenv MCPPATH ~mike/gamess/mcpdata
+setenv ERICFMT /usr/share/gamess/ericfmt/ericfmt.dat
+setenv MCPPATH /usr/share/gamess/mcpdata
setenv EXTBAS /dev/null
#
-setenv IRCDATA ~$USER/scr/$JOB.irc
+setenv IRCDATA $SCR/$JOB.irc
setenv INPUT $SCR/$JOB.F05
-setenv PUNCH ~$USER/scr/$JOB.dat
+setenv PUNCH $SCR/$JOB.dat
setenv AOINTS $SCR/$JOB.F08
setenv MOINTS $SCR/$JOB.F09
setenv DICTNRY $SCR/$JOB.F10
@@ -149,8 +149,8 @@
setenv SOINTY $SCR/$JOB.F32
setenv SOINTZ $SCR/$JOB.F33
setenv SORESC $SCR/$JOB.F34
-setenv SIMEN ~$USER/scr/$JOB.simen
-setenv SIMCOR ~$USER/scr/$JOB.simcor
+setenv SIMEN $SCR/$JOB.simen
+setenv SIMCOR $SCR/$JOB.simcor
setenv GCILIST $SCR/$JOB.F37
setenv HESSIAN $SCR/$JOB.F38
setenv SOCCDAT $SCR/$JOB.F40
@@ -291,7 +291,7 @@
if ($os == HP-UX) set GMSPATH=/zr/mike/gamess
if ($os == IRIX) set GMSPATH=/home/hbar4/people/schmidt/gamess
if ($os == IRIX64) set GMSPATH=/home/hbar4/people/schmidt/gamess
- if ($os == Linux) set GMSPATH=/cu/mike/gamess
+ if ($os == Linux) set GMSPATH=/usr/bin
if ($os == OSF1) set GMSPATH=/au/mike/gamess
if ($os == SunOS) set GMSPATH=/hf/mike/gamess
# special compilation for my old Sun (uname also replies SunOS)
|