diff options
Diffstat (limited to 'noao/digiphot/daophot/substar/dpsconfirm.x')
-rw-r--r-- | noao/digiphot/daophot/substar/dpsconfirm.x | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/noao/digiphot/daophot/substar/dpsconfirm.x b/noao/digiphot/daophot/substar/dpsconfirm.x new file mode 100644 index 00000000..3ed5bc27 --- /dev/null +++ b/noao/digiphot/daophot/substar/dpsconfirm.x @@ -0,0 +1,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 |