aboutsummaryrefslogtreecommitdiff
path: root/noao/imred/iids/iids.cl
diff options
context:
space:
mode:
Diffstat (limited to 'noao/imred/iids/iids.cl')
-rw-r--r--noao/imred/iids/iids.cl66
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()