From fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 8 Jul 2015 20:46:52 -0400 Subject: Initial commit --- vo/vo.cl | 66 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 vo/vo.cl (limited to 'vo/vo.cl') 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() -- cgit