diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
commit | fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 (patch) | |
tree | bdda434976bc09c864f2e4fa6f16ba1952b1e555 /noao/imred/irs/irs.cl | |
download | iraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz |
Initial commit
Diffstat (limited to 'noao/imred/irs/irs.cl')
-rw-r--r-- | noao/imred/irs/irs.cl | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/noao/imred/irs/irs.cl b/noao/imred/irs/irs.cl new file mode 100644 index 00000000..6814185f --- /dev/null +++ b/noao/imred/irs/irs.cl @@ -0,0 +1,64 @@ +#{ IRS -- KPNO IRS Spectral Reduction Package + +# Load necessary packages + +lists # List package for table + +# Define necessary paths + +set irscal = "onedstds$irscal/" +set irsiids = "onedspec$irsiids/" + +package irs + +# 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, + flatdiv, + slist1d, + subsets, + sums = irsiids$x_onedspec.e +task batchred = irsiids$batchred.cl +task bplot = irsiids$bplot.cl +task extinct = irsiids$extinct.cl + +# Different default parameters +task calibrate, + dispcor, + flatfit, + identify, + lcalib, + reidentify, + refspectra, + sensfunc, + standard = irs$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() |