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/imred/iids/iids.cl | |
download | iraf-osx-40e5a5811c6ffce9b0974e93cdd927cbcf60c157.tar.gz |
Repatch (from linux) of OSX IRAF
Diffstat (limited to 'noao/imred/iids/iids.cl')
-rw-r--r-- | noao/imred/iids/iids.cl | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/noao/imred/iids/iids.cl b/noao/imred/iids/iids.cl new file mode 100644 index 00000000..19b8ac79 --- /dev/null +++ b/noao/imred/iids/iids.cl @@ -0,0 +1,66 @@ +#{ IIDS -- KPNO IIDS Spectral Reduction Package + +# Load necessary packages + +lists # List package for table + +# Define necessary paths + +set iidscal = "onedstds$iidscal/" +set irsiids = "onedspec$irsiids/" + +package iids + +# Standard ONEDSPEC tasks +task autoidentify, + continuum, + deredden, + dopcor, + mkspec, + names, + sarith, + sflip, + sinterp, + splot, + specplot, + specshift = onedspec$x_onedspec.e +task scombine = "onedspec$scombine/x_scombine.e" +task aidpars = "onedspec$aidpars.par" +task dispcor1 = onedspec$dispcor1.par +task scopy = onedspec$scopy.cl +hidetask dispcor1 + +# Special IRS/IIDS tasks +task addsets, + bswitch, + coefs, + coincor, + flatdiv, + flatfit, + slist1d, + subsets, + sums = irsiids$x_onedspec.e +task batchred = irsiids$batchred.cl +task bplot = irsiids$bplot.cl +task extinct = irsiids$extinct.cl +task powercor = irsiids$powercor.cl + +# Different default parameters +task calibrate, + dispcor, + identify, + lcalib, + refspectra, + reidentify, + sensfunc, + standard = iids$x_onedspec.e + +# Astutil tasks +task setairmass, + setjd = "astutil$x_astutil.e" + +# Define a task living in the users directory - it is created by BATCHRED + +task $process = process.cl + +clbye() |