aboutsummaryrefslogtreecommitdiff
path: root/noao/digiphot/apphot/daofind/apfdconfirm.x
diff options
context:
space:
mode:
authorJoe Hunkeler <jhunkeler@gmail.com>2015-08-11 16:51:37 -0400
committerJoe Hunkeler <jhunkeler@gmail.com>2015-08-11 16:51:37 -0400
commit40e5a5811c6ffce9b0974e93cdd927cbcf60c157 (patch)
tree4464880c571602d54f6ae114729bf62a89518057 /noao/digiphot/apphot/daofind/apfdconfirm.x
downloadiraf-osx-40e5a5811c6ffce9b0974e93cdd927cbcf60c157.tar.gz
Repatch (from linux) of OSX IRAF
Diffstat (limited to 'noao/digiphot/apphot/daofind/apfdconfirm.x')
-rw-r--r--noao/digiphot/apphot/daofind/apfdconfirm.x22
1 files changed, 22 insertions, 0 deletions
diff --git a/noao/digiphot/apphot/daofind/apfdconfirm.x b/noao/digiphot/apphot/daofind/apfdconfirm.x
new file mode 100644
index 00000000..ce69cbd9
--- /dev/null
+++ b/noao/digiphot/apphot/daofind/apfdconfirm.x
@@ -0,0 +1,22 @@
+# AP_FDCONFIRM -- Procedure to confirm the critical daofind parameters.
+
+procedure ap_fdconfirm (ap)
+
+pointer ap # pointer to the apphot structure
+
+real rval
+real ap_vfwhmpsf(), ap_vsigma(), ap_vthreshold()
+real ap_vdatamin(), ap_vdatamax()
+
+begin
+ call printf ("\n")
+
+ # Verify the critical parameters.
+ rval = ap_vfwhmpsf (ap)
+ rval = ap_vsigma (ap)
+ rval = ap_vthreshold (ap)
+ rval = ap_vdatamin (ap)
+ rval = ap_vdatamax (ap)
+
+ call printf ("\n")
+end