blob: ce69cbd96bbb120f50bcb4e6d015b472e6d70e79 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# AP_FDCONFIRM -- Procedure to confirm the critical daofind parameters.
procedure ap_fdconfirm (ap)
pointer ap # pointer to the apphot structure
real rval
real ap_vfwhmpsf(), ap_vsigma(), ap_vthreshold()
real ap_vdatamin(), ap_vdatamax()
begin
call printf ("\n")
# Verify the critical parameters.
rval = ap_vfwhmpsf (ap)
rval = ap_vsigma (ap)
rval = ap_vthreshold (ap)
rval = ap_vdatamin (ap)
rval = ap_vdatamax (ap)
call printf ("\n")
end
|