blob: 21047440ed6d292b7e6e3638fd5c1c65df69dfd7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# DP_PTCONFIRM -- Confirm the critical PSTSELECT parameters.
procedure dp_ptconfirm (dao)
pointer dao # pointer to the daophot structure
begin
call printf ("\n")
# Confirm the psf radius.
call dp_vpsfrad (dao)
# Confirm the fitting radius.
call dp_vfitrad (dao)
# Confirm the data minimum and maximum values.
call dp_vdatamin (dao)
call dp_vdatamax (dao)
call printf ("\n")
end
|