diff options
author | Joe Hunkeler <jhunkeler@gmail.com> | 2015-08-11 16:51:37 -0400 |
---|---|---|
committer | Joe Hunkeler <jhunkeler@gmail.com> | 2015-08-11 16:51:37 -0400 |
commit | 40e5a5811c6ffce9b0974e93cdd927cbcf60c157 (patch) | |
tree | 4464880c571602d54f6ae114729bf62a89518057 /noao/digiphot/apphot/apphot.cl | |
download | iraf-osx-40e5a5811c6ffce9b0974e93cdd927cbcf60c157.tar.gz |
Repatch (from linux) of OSX IRAF
Diffstat (limited to 'noao/digiphot/apphot/apphot.cl')
-rw-r--r-- | noao/digiphot/apphot/apphot.cl | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/noao/digiphot/apphot/apphot.cl b/noao/digiphot/apphot/apphot.cl new file mode 100644 index 00000000..d4b3b94f --- /dev/null +++ b/noao/digiphot/apphot/apphot.cl @@ -0,0 +1,58 @@ +#{ APPHOTX -- Digital aperture photometry package. + +dataio # rfits task required by aptest.cl script +lists # lintran task in the lists package + +package apphot + +task center, + daofind, + fitpsf, + fitsky, + radprof, + phot, + polymark, + polyphot, + qphot, + wphot = "apphot$x_apphot.e" + +task centerpars = "apphot$centerpars.par" +task datapars = "apphot$datapars.par" +task findpars = "apphot$findpars.par" +task fitskypars = "apphot$fitskypars.par" +task photpars = "apphot$photpars.par" +task polypars = "apphot$polypars.par" + +task aptest = "apphot$aptest.cl" + +# PTOOLS tasks + +task pexamine = "apphot$x_ptools.e" + +task pconvert, + istable, + txcalc, + txdump, + txrenumber, + txselect, + txsort = "ptools$x_ptools.e" + +task xyplot = "ptools$xyplot.par" +task histplot = "ptools$histplot.par" +task radplot = "ptools$radplot.par" +task surfplot = "ptools$surfplot.par" +task cntrplot = "ptools$cntrplot.par" + +# PTOOLS scripts which depend on PTOOLS and TTOOLS tasks +# Note TTOOLS is not loaded + +task pcalc = "ptools$pcalc.cl" +task pdump = "ptools$pdump.cl" +task prenumber = "ptools$prenumber.cl" +task pselect = "ptools$pselect.cl" +task psort = "ptools$psort.cl" + +hidetask istable, txcalc, txdump, txrenumber, txselect, txsort +hidetask xyplot, histplot, radplot, surfplot, cntrplot + +clbye() |