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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# Package script task for the DAOPHOTX package.
#{ DAOPHOTX -- Point Spread Function photometry package.
# Load other packages
dataio # rfits task is required for the daotest script
;
package daophot
task setimpars = "daophot$setimpars.cl"
task daotest = "daophot$daotest.cl"
task daofind,
phot = "daophot$x_apphot.e"
task addstar,
allstar,
group,
grpselect,
nstar,
peak,
pfmerge,
psf,
pstselect,
seepsf,
daoedit,
substar = "daophot$x_daophot.e"
task datapars = "daophot$datapars.par"
task findpars = "daophot$findpars.par"
task centerpars = "daophot$centerpars.par"
task fitskypars = "daophot$fitskypars.par"
task photpars = "daophot$photpars.par"
task daopars = "daophot$daopars.par"
# PTOOLS tasks
task pconvert,
istable,
txcalc,
txconcat,
txdump,
txrenumber,
txselect,
txsort = "ptools$x_ptools.e"
task pexamine = "daophot$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
task pcalc = "ptools$pcalc.cl"
task pconcat = "ptools$pconcat.cl"
task pdump = "ptools$pdump.cl"
task prenumber = "ptools$prenumber.cl"
task pselect = "ptools$pselect.cl"
task psort = "ptools$psort.cl"
# PTOOLS Scripts which depend only on TTOOLS tasks
task tbconcat = "ptools$tbconcat.cl"
task tbcalc = "ptools$tbcalc.cl"
task tbdump = "ptools$tbdump.cl"
hidetask istable, txcalc, txconcat, txdump, txrenumber, txselect, txsort
hidetask xyplot, histplot, radplot, surfplot, cntrplot
hidetask tbcalc, tbconcat, tbdump
clbye()
|