aboutsummaryrefslogtreecommitdiff
path: root/noao/digiphot/daophot/allstar/dpaconfirm.x
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2015-07-08 20:46:52 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2015-07-08 20:46:52 -0400
commitfa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 (patch)
treebdda434976bc09c864f2e4fa6f16ba1952b1e555 /noao/digiphot/daophot/allstar/dpaconfirm.x
downloadiraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz
Initial commit
Diffstat (limited to 'noao/digiphot/daophot/allstar/dpaconfirm.x')
-rw-r--r--noao/digiphot/daophot/allstar/dpaconfirm.x37
1 files changed, 37 insertions, 0 deletions
diff --git a/noao/digiphot/daophot/allstar/dpaconfirm.x b/noao/digiphot/daophot/allstar/dpaconfirm.x
new file mode 100644
index 00000000..76e24798
--- /dev/null
+++ b/noao/digiphot/daophot/allstar/dpaconfirm.x
@@ -0,0 +1,37 @@
+include "../lib/daophotdef.h"
+
+# DP_ACONFIRM -- Procedure to confirm the critical allstar parameters.
+
+procedure dp_aconfirm (dao)
+
+pointer dao # pointer to the group structure
+
+int dp_stati()
+
+begin
+ call printf ("\n")
+
+ # Confirm the recentering and sky fitting parameters.
+ call dp_vrecenter (dao)
+ call dp_vgroupsky (dao)
+ call dp_vfitsky (dao)
+ if (dp_stati (dao, FITSKY) == YES) {
+ call dp_vsannulus (dao)
+ call dp_vwsannulus (dao)
+ }
+
+ # Confirm the psf radius.
+ call dp_vpsfrad (dao)
+
+ # Confirm the fitting radius.
+ call dp_vfitrad (dao)
+
+ # Confirm the maximum group size.
+ call dp_vmaxgroup (dao)
+
+ # Confirm the minimum and maximum good data values.
+ call dp_vdatamin (dao)
+ call dp_vdatamax (dao)
+
+ call printf ("\n")
+end