From 40e5a5811c6ffce9b0974e93cdd927cbcf60c157 Mon Sep 17 00:00:00 2001 From: Joe Hunkeler Date: Tue, 11 Aug 2015 16:51:37 -0400 Subject: Repatch (from linux) of OSX IRAF --- noao/digiphot/daophot/peak/dppkconfirm.x | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 noao/digiphot/daophot/peak/dppkconfirm.x (limited to 'noao/digiphot/daophot/peak/dppkconfirm.x') diff --git a/noao/digiphot/daophot/peak/dppkconfirm.x b/noao/digiphot/daophot/peak/dppkconfirm.x new file mode 100644 index 00000000..c7dc6333 --- /dev/null +++ b/noao/digiphot/daophot/peak/dppkconfirm.x @@ -0,0 +1,25 @@ +# DP_PKCONFIRM -- Procedure to confirm the critical peak parameters. + +procedure dp_pkconfirm (dao) + +pointer dao # pointer to the daophot structure + +begin + call printf ("\n") + + # Confirm recentering and sky fitting. + call dp_vrecenter (dao) + call dp_vfitsky (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 -- cgit