blob: c7dc6333aa2af263905572dd0dee5e1327f1a454 (
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
|
# DP_PKCONFIRM -- Procedure to confirm the critical peak parameters.
procedure dp_pkconfirm (dao)
pointer dao # pointer to the daophot structure
begin
call printf ("\n")
# Confirm recentering and sky fitting.
call dp_vrecenter (dao)
call dp_vfitsky (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
|