aboutsummaryrefslogtreecommitdiff
path: root/noao/digiphot/daophot/select/t_grpselect.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/select/t_grpselect.x
downloadiraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz
Initial commit
Diffstat (limited to 'noao/digiphot/daophot/select/t_grpselect.x')
-rw-r--r--noao/digiphot/daophot/select/t_grpselect.x105
1 files changed, 105 insertions, 0 deletions
diff --git a/noao/digiphot/daophot/select/t_grpselect.x b/noao/digiphot/daophot/select/t_grpselect.x
new file mode 100644
index 00000000..89377270
--- /dev/null
+++ b/noao/digiphot/daophot/select/t_grpselect.x
@@ -0,0 +1,105 @@
+include <fset.h>
+include "../lib/daophotdef.h"
+
+# T_GRPSELECT -- Select groups from a GROUP file on the basis of the size
+# of the group. Only groups of the sizes specified are copied into the
+# output table.
+
+procedure t_grpselect ()
+
+pointer ingroup # the input GROUP file
+pointer outgroup # the output GROUP file
+int min_group # the minimum group size
+int max_group # the maximum group size
+
+bool gr_text
+int ilist, lilist, olist, lolist, verbose
+pointer sp, tp_in, tp_out, dao
+
+bool clgetb(), itob()
+int open(), tbtopn(), clgeti(), fstati(), btoi(), access()
+int fntopnb(), fntlenb(), fntgfnb()
+
+begin
+ # Set the standard output to flush on newline.
+ if (fstati (STDOUT, F_REDIR) == NO)
+ call fseti (STDOUT, F_FLUSHNL, YES)
+
+ # Get some memory.
+ call smark (sp)
+ call salloc (ingroup, SZ_FNAME, TY_CHAR)
+ call salloc (outgroup, SZ_FNAME, TY_CHAR)
+
+ # Get the various task parameters.
+ call clgstr ("ingroupfile", Memc[ingroup], SZ_FNAME)
+ call clgstr ("outgroupfile", Memc[outgroup], SZ_FNAME)
+ min_group = clgeti ("min_group")
+ max_group = clgeti ("max_group")
+ verbose = btoi (clgetb ("verbose"))
+
+ # Open the daophot structure.
+ call dp_init (dao)
+
+ # Open the photometry structure.
+ call dp_apsetup (dao)
+
+ # Set some parameters.
+ call dp_seti (dao, VERBOSE, verbose)
+
+ # Get the lists.
+ ilist = fntopnb (Memc[ingroup], NO)
+ lilist = fntlenb (ilist)
+ olist = fntopnb (Memc[outgroup], NO)
+ lolist = fntlenb (olist)
+
+ # Check the list lengths.
+ if (lilist != lolist) {
+ call fntclsb (ilist)
+ call fntclsb (olist)
+ call sfree (sp)
+ call error (0,
+ "The input and output list lengths are not compatible")
+ }
+
+ # Loop over the files.
+ while ((fntgfnb (ilist, Memc[ingroup], SZ_FNAME) != EOF) &&
+ (fntgfnb (olist, Memc[outgroup], SZ_FNAME) != EOF)) {
+
+ # Open the input file.
+ gr_text = itob (access (Memc[ingroup], 0, TEXT_FILE))
+ if (gr_text)
+ tp_in = open (Memc[ingroup], READ_ONLY, TEXT_FILE)
+ else
+ tp_in = tbtopn (Memc[ingroup], READ_ONLY, 0)
+
+ # Open an output file of the same type as the input file.
+ if (gr_text)
+ tp_out = open (Memc[outgroup], NEW_FILE, TEXT_FILE)
+ else
+ tp_out = tbtopn (Memc[outgroup], NEW_COPY, tp_in)
+
+ # Read in the groups and select by group size.
+ call dp_sgroup (dao, tp_in, tp_out, gr_text, min_group, max_group)
+
+ # Close the input and output files.
+ if (gr_text) {
+ call close (tp_in)
+ call close (tp_out)
+ } else {
+ call tbtclo (tp_in)
+ call tbtclo (tp_out)
+ }
+ }
+
+ # Close the lists.
+ call fntclsb (ilist)
+ call fntclsb (olist)
+
+ # Free the photometry structure.
+ call dp_apclose (dao)
+
+ # Free the daophot structure.
+ call dp_free (dao)
+
+ call sfree (sp)
+end