Index: /trunk/Ohana/src/relphot/src/load_catalogs.c
===================================================================
--- /trunk/Ohana/src/relphot/src/load_catalogs.c	(revision 20189)
+++ /trunk/Ohana/src/relphot/src/load_catalogs.c	(revision 20190)
@@ -3,5 +3,5 @@
 Catalog *load_catalogs (SkyList *skylist, int *Ncatalog) {
 
-  int i, Nstar;
+  int i, Nmeas, Nstar, Nmeas_total, Nstar_total;
   Catalog *catalog, tcatalog;
 
@@ -9,4 +9,6 @@
 
   ALLOCATE (catalog, Catalog, skylist[0].Nregions);
+
+  Nmeas_total = Nstar_total = 0;
 
   // load data from each region file, only use bright stars
@@ -25,4 +27,6 @@
     }
     if (VERBOSE && !tcatalog.Naves_disk) fprintf (stderr, "no data in %s, skipping\n", tcatalog.filename);
+    Nstar_total += tcatalog.Naverage;
+    Nmeas_total += tcatalog.Nmeasure;
 
     // select only the brighter stars
@@ -33,11 +37,14 @@
 
   // XXX keep this test?
-  Nstar = 0;
+  Nstar = Nmeas = 0;
   for (i = 0; i < skylist[0].Nregions; i++) {
     Nstar += catalog[i].Naverage;
+    Nmeas += catalog[i].Nmeasure;
   }
   if (Nstar < 2) { 
     fprintf (stderr, "warning: insufficient stars %d\n", Nstar);
   }
+
+  fprintf (stderr, "using %d of %d stars (%d of %d measurements)\n", Nstar, Nstar_total, Nmeas, Nmeas_total);
 
   // XXX consider only returning the populated catalogs
