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 /vo/vo.cl | |
download | iraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz |
Initial commit
Diffstat (limited to 'vo/vo.cl')
-rw-r--r-- | vo/vo.cl | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/vo/vo.cl b/vo/vo.cl new file mode 100644 index 00000000..7dbb03f0 --- /dev/null +++ b/vo/vo.cl @@ -0,0 +1,66 @@ +#{ VO -- VO Client Application Package + +# Load dependent packages. +nproto +astutil +digiphot +apphot +photcal +onedspec +if (deftask ("astcat")) + astcat +else + ; + +# This package requires FITS image type and various kernel parameters. +reset imtype = "fits" +if (defvar ("fkinit")) + set fkinit = envget ("fkinit") // ",append,padlines=10,cachesize=60" +else + set fkinit = "append,padlines=10,cachesize=60" + +# Initialize the VOClient +#vocinit + + +cl < "vo$lib/zzsetenv.def" +package vo, bin = vobin$ + +# Logical directories. +set voapps = "vo$src/" +set vojava = "vo$java/" +set vodata = "vo$votest/data/" + +# Sub-packages. +set votest = "vo$votest/" +set votools = "vo$votools/" + +# Set the local package environment. +set clobber = yes +set imclobber = yes +set imtype = "fits" + + +# Compiled tasks. + + +# Script tasks. +task registry = vosrc$registry.cl # Resource discovery +#task sloanspec = vosrc$sloanspec.cl # Query for SDSS spectra +#task vizier = vosrc$vizier.cl +#task datascope = vosrc$datascope.cl # Demo apps +#task skybot = vosrc$skybot.cl +#task fchart = vosrc$fchart.cl + + +# Hidden tasks. + +# Subpackages +task votest.pkg = votest$votest.cl +task votools.pkg = votools$votools.cl + +# Load packages. +votools +vo + +clbye() |