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/daophot/psf/dpptconfirm.x | |
download | iraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz |
Initial commit
Diffstat (limited to 'noao/digiphot/daophot/psf/dpptconfirm.x')
-rw-r--r-- | noao/digiphot/daophot/psf/dpptconfirm.x | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/noao/digiphot/daophot/psf/dpptconfirm.x b/noao/digiphot/daophot/psf/dpptconfirm.x new file mode 100644 index 00000000..21047440 --- /dev/null +++ b/noao/digiphot/daophot/psf/dpptconfirm.x @@ -0,0 +1,21 @@ +# DP_PTCONFIRM -- Confirm the critical PSTSELECT parameters. + +procedure dp_ptconfirm (dao) + +pointer dao # pointer to the daophot structure + +begin + call printf ("\n") + + # Confirm the psf radius. + call dp_vpsfrad (dao) + + # Confirm the fitting radius. + call dp_vfitrad (dao) + + # Confirm the data minimum and maximum values. + call dp_vdatamin (dao) + call dp_vdatamax (dao) + + call printf ("\n") +end |