diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
commit | fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 (patch) | |
tree | bdda434976bc09c864f2e4fa6f16ba1952b1e555 /noao/digiphot/apphot/daofind/apfdconfirm.x | |
download | iraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz |
Initial commit
Diffstat (limited to 'noao/digiphot/apphot/daofind/apfdconfirm.x')
-rw-r--r-- | noao/digiphot/apphot/daofind/apfdconfirm.x | 22 |
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 |