diff options
author | Joe Hunkeler <jhunkeler@gmail.com> | 2015-08-11 16:51:37 -0400 |
---|---|---|
committer | Joe Hunkeler <jhunkeler@gmail.com> | 2015-08-11 16:51:37 -0400 |
commit | 40e5a5811c6ffce9b0974e93cdd927cbcf60c157 (patch) | |
tree | 4464880c571602d54f6ae114729bf62a89518057 /noao/obsutil/obsutil.cl | |
download | iraf-osx-40e5a5811c6ffce9b0974e93cdd927cbcf60c157.tar.gz |
Repatch (from linux) of OSX IRAF
Diffstat (limited to 'noao/obsutil/obsutil.cl')
-rw-r--r-- | noao/obsutil/obsutil.cl | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/noao/obsutil/obsutil.cl b/noao/obsutil/obsutil.cl new file mode 100644 index 00000000..dba19b08 --- /dev/null +++ b/noao/obsutil/obsutil.cl @@ -0,0 +1,42 @@ +#{ OBSUTIL.CL -- Observing utilities package. + +package obsutil + +# Logical directories + +set obssrc = "obsutil$src/" +set ccdtimesrc = "obssrc$ccdtime/" +set pairmass = "obssrc$pairmass/" +set sptime = "obssrc$sptime/" +set sptimelib = "sptime$lib/" +set specfocus = "obssrc$specfocus/" +set starfocus = "obssrc$starfocus/" + + +# Executable Tasks + +task bitcount = "obssrc$x_obsutil.e" +task ccdtime = "ccdtimesrc$x_obsutil.e" +task pairmass = "pairmass$x_obsutil.e" +task specfocus = "specfocus$x_obsutil.e" +task sptime, + $cgiparse = "sptime$x_obsutil.e" +task psfmeasure, + starfocus = "starfocus$x_obsutil.e" + +# Script Tasks + +task findgain = "obssrc$findgain.cl" +task shutcor = "obssrc$shutcor.cl" + +# Pset Tasks + +task specpars = "sptime$specpars.par" + +# User Tasks. +if (access (obsutil.custom//"scripts.cl")) + cl (< obsutil.custom//"scripts.cl") +else + ; + +clbye |