Index: /branches/dvo-mods-2007-02/Ohana/src/relphot/src/setExclusions.c
===================================================================
--- /branches/dvo-mods-2007-02/Ohana/src/relphot/src/setExclusions.c	(revision 12323)
+++ /branches/dvo-mods-2007-02/Ohana/src/relphot/src/setExclusions.c	(revision 12324)
@@ -3,9 +3,9 @@
 int setExclusions (Catalog *catalog, int Ncatalog) {
 
-  int i, j, k, m, Narea, Nnocal, ecode;
+  int i, j, k, m, Narea, Nnocal, Ngood, ecode;
   Coords *coords;
   double r, d, x, y;
 
-  Nnocal = Narea = 0;
+  Ngood = Nnocal = Narea = 0;
   for (i = 0; i < Ncatalog; i++) {
     for (j = 0; j < catalog[i].Naverage; j++) {
@@ -34,4 +34,5 @@
 	  if (y > AreaYmax) goto markbad;
 	}
+	Ngood ++;
 	continue;
 
@@ -50,4 +51,5 @@
   if (VERBOSE) fprintf (stderr, "%d measurements marked by area\n", Narea);
   if (VERBOSE) fprintf (stderr, "%d measurements marked nocal\n", Nnocal);
+  if (VERBOSE) fprintf (stderr, "%d measurements kept for analysis\n", Ngood);
   return (TRUE);
 }
