1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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()
|