diff options
Diffstat (limited to 'noao/digiphot/daophot/group/dpgconfirm.x')
-rw-r--r-- | noao/digiphot/daophot/group/dpgconfirm.x | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/noao/digiphot/daophot/group/dpgconfirm.x b/noao/digiphot/daophot/group/dpgconfirm.x new file mode 100644 index 00000000..4dcb3003 --- /dev/null +++ b/noao/digiphot/daophot/group/dpgconfirm.x @@ -0,0 +1,24 @@ +# DP_GCONFIRM -- Confirm the critical GROUP task parameters. + +procedure dp_gconfirm (dao) + +pointer dao # pointer to the group structure + +begin + call printf ("\n") + + # Confirm the psf radius. + call dp_vpsfrad (dao) + + # Confirm the fitting radius. + call dp_vfitrad (dao) + + # Confirm the critical signal-to-noise ratio. + call dp_vcritsnratio (dao) + + # Confirm the minimum and maximum good data values. + call dp_vdatamin (dao) + call dp_vdatamax (dao) + + call printf ("\n") +end |