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/digiphot/photcal/photcal.cl | |
download | iraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz |
Initial commit
Diffstat (limited to 'noao/digiphot/photcal/photcal.cl')
-rw-r--r-- | noao/digiphot/photcal/photcal.cl | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/noao/digiphot/photcal/photcal.cl b/noao/digiphot/photcal/photcal.cl new file mode 100644 index 00000000..7923b53e --- /dev/null +++ b/noao/digiphot/photcal/photcal.cl @@ -0,0 +1,55 @@ +# Package script task for the PHOTCAL package. +#{ PHOTCAL package definition + + +# Load other packages + +images # some of the preprocessors require hselect +lists # the mkimsets script requires the unique task +proto # some of the preprocessors require fields + +# Define photcal package + +package photcal + +# PHOTCAL tasks + +task apfile, + catalog, + config, + chkconfig, + evalfit, + fitparams, + imgroup, + invertfit, + obsfile, + mkphotcors = "photcal$x_photcal.e" + +# PHOTCAL scripts + +task mkapfile = "photcal$mkapfile.cl" +task mkcatalog = "photcal$mkcatalog.cl" +task mkconfig = "photcal$mkconfig.cl" +task mkimsets = "photcal$mkimsets.cl" +task mknobsfile = "photcal$mknobsfile.cl" +task mkobsfile = "photcal$mkobsfile.cl" + +# PTOOLS tasks + +task istable, + tbcrename, + tbkeycol, + txdump = "ptools$x_ptools.e" + +# PTOOLS scripts which depend on PTOOLS and TTOOLS tasks + +task pdump = "ptools$pdump.cl" + +# TTOOLS tasks linked into the photcal package + +task tbdump = "ptools$tbdump.cl" + +hidetask catalog, config, imgroup +hidetask istable, tbcrename, tbkeycol, txdump, tbdump, pdump + +clbye() |