blob: 3ed5bc277a7dcf591fc494e7b59ef78847cd5a7d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# DP_SCONFIRM -- Procedure to confirm the critical substar parameters.
procedure dp_sconfirm (dao)
pointer dao # pointer to the daophot structure
begin
call printf ("\n")
# Confirm the psf radius.
call dp_vpsfrad (dao)
# Confirm the minimum and maximum good data values.
call dp_vdatamin (dao)
call dp_vdatamax (dao)
call printf ("\n")
end
|