Index: /trunk/Ohana/src/imregister/photreg/output.c
===================================================================
--- /trunk/Ohana/src/imregister/photreg/output.c	(revision 92)
+++ /trunk/Ohana/src/imregister/photreg/output.c	(revision 93)
@@ -96,4 +96,6 @@
   fits_define_table_column (&theader, "A12",  "C1_NAME",    "filter 1 for color",        "");
   fits_define_table_column (&theader, "A12",  "C2_NAME",    "filter 2 for color",        "");
+  fits_define_table_column (&theader, "I6",   "NSTARS",     "number of stars used",      "");
+  fits_define_table_column (&theader, "I6",   "NTIMES",     "number of unique images",   "");
   fits_define_table_column (&theader, "A12",  "FILTER",     "filter",                    "");
   fits_define_table_column (&theader, "A70",  "LABEL",      "data label",                "");
@@ -109,6 +111,8 @@
   fits_modify (&theader, "TNULL8",  "%s", 1, "NULL");  /* C1_NAME    */
   fits_modify (&theader, "TNULL9",  "%s", 1, "NULL");  /* C2_NAME    */
-  fits_modify (&theader, "TNULL10", "%s", 1, "NULL");  /* FILTER     */
-  fits_modify (&theader, "TNULL11", "%s", 1, "NULL");  /* LABEL      */
+  fits_modify (&theader, "TNULL10", "%s", 1, "NULL");  /* NSTARS     */
+  fits_modify (&theader, "TNULL11", "%s", 1, "NULL");  /* NTIMES     */
+  fits_modify (&theader, "TNULL12", "%s", 1, "NULL");  /* FILTER     */
+  fits_modify (&theader, "TNULL13", "%s", 1, "NULL");  /* LABEL      */
 
   fits_modify (&theader, "TNVAL1",  "%s", 1, "Inf");   /* ZP_OBS     */
@@ -121,6 +125,8 @@
   fits_modify (&theader, "TNVAL8",  "%s", 1, "NA");    /* C1_NAME    */
   fits_modify (&theader, "TNVAL9",  "%s", 1, "NA");    /* C2_NAME    */
-  fits_modify (&theader, "TNVAL10", "%s", 1, "NA");    /* FILTER     */
-  fits_modify (&theader, "TNVAL11", "%s", 1, "NA");    /* LABEL      */
+  fits_modify (&theader, "TNVAL10", "%s", 1, "NA");    /* NSTARS     */
+  fits_modify (&theader, "TNVAL11", "%s", 1, "NA");    /* NTIMES     */
+  fits_modify (&theader, "TNVAL12", "%s", 1, "NA");    /* FILTER     */
+  fits_modify (&theader, "TNVAL13", "%s", 1, "NA");    /* LABEL      */
 
   /* create table, add data values */
@@ -141,5 +147,5 @@
     line = fits_table_print (&table, newdata[0].ZP, newdata[0].ZPo, newdata[0].dZP, 
 	      newdata[0].K, newdata[0].X, startstr, stopstr,
-	      c1, c2, code, newdata[0].label);
+	      c1, c2, newdata[0].Nmeas, newdata[0].Ntime, code, newdata[0].label);
     if (!fits_add_rows (&table, line, 1, strlen(line))) escape (IGNORE, (FILE *) NULL, (char *) NULL, NULL, "error writing dataline");
 
