blob: 092cfec3a7046891ba7be72def38e2d7131ba168 (
plain) (
blame)
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
|
# DP_PCONFIRM -- Procedure to confirm the critical psf parameters.
procedure dp_pconfirm (dao)
pointer dao # pointer to the daophot structure
begin
call printf ("\n")
# Verify the functional form of the psf.
call dp_vfunction(dao)
call dp_vvarorder (dao)
#call dp_vfexpand (dao)
# Confirm the psf radius.
call dp_vpsfrad (dao)
# Confirm the fitting radius.
call dp_vfitrad (dao)
# Confirm the minimum and maximum good data values.
call dp_vdatamin (dao)
call dp_vdatamax (dao)
call printf ("\n")
end
|