aboutsummaryrefslogtreecommitdiff
path: root/Moog.f
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2021-08-03 14:49:58 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2021-08-03 14:49:58 -0400
commite9293da11f685d17e2002bb06f0fd756845dadfd (patch)
tree0ce16357b71b44bf5af0be717830b361ecc25700 /Moog.f
parentaf8fa097905186e0d8ba257e4d70d63fe8901264 (diff)
downloadmoog-e9293da11f685d17e2002bb06f0fd756845dadfd.tar.gz
Changeset:
* Simplify Makefile * Accept input file as command line argument * Increase path length to 1024 for all path-related variables * Replace hard-coded path to \*.dat files with environment variable MOOG_DATA * SM needs double precision for several of its functions. Pass REAL8 not REAL4 to those.
Diffstat (limited to 'Moog.f')
-rwxr-xr-xMoog.f6
1 files changed, 3 insertions, 3 deletions
diff --git a/Moog.f b/Moog.f
index e78e525..c54335f 100755
--- a/Moog.f
+++ b/Moog.f
@@ -18,15 +18,15 @@ c declared. First, define the directory where MOOG lives, in order to
c be able to pull in auxiliary data files; executing 'make' will
c generate a reminder of this necessity
write (moogpath,1001)
- moogpath =
- . '/Users/chris/CODES/moognov2019/'
+ call get_environment_variable("MOOG_DATA", moogpath)
c*****What kind of machine are you using? Possible ones are:
+c OBSOLETE
c "mac" = Intel-based Apple Mac
c "pcl" = a PC or desktop running some standard linux like Redhat
c "uni" = a machine running Unix, specifically Sun Solaris
- machine = "mac"
+ machine = ""
c*****for x11 terminal types, define the parameters of plotting windows;