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