Index: /branches/eam_branches/ipp-20121219/Ohana/src/opihi/dvo/dvo_host_utils.c
===================================================================
--- /branches/eam_branches/ipp-20121219/Ohana/src/opihi/dvo/dvo_host_utils.c	(revision 34886)
+++ /branches/eam_branches/ipp-20121219/Ohana/src/opihi/dvo/dvo_host_utils.c	(revision 34887)
@@ -330,9 +330,14 @@
   set_int_variable (name, table->Nhosts);
 
+  char results[DVO_MAX_PATH];
+
   // load fields from file
   for (i = 0; i < table->Nhosts; i++) {
 
+    // need to save the results filename with the uniquer
+    snprintf (results, DVO_MAX_PATH, "%s/dvo.results.%s.fits", table->hosts[i].pathname, uniquer);
+
     snprintf (name, 256, "RESULT_FILE:%d", i);
-    set_str_variable (name, table->hosts[i].results);
+    set_str_variable (name, results);
 
     // DATA : 0 (unread), 1 (read)
Index: /branches/eam_branches/ipp-20121219/Ohana/src/opihi/dvo/gstar.c
===================================================================
--- /branches/eam_branches/ipp-20121219/Ohana/src/opihi/dvo/gstar.c	(revision 34886)
+++ /branches/eam_branches/ipp-20121219/Ohana/src/opihi/dvo/gstar.c	(revision 34887)
@@ -7,4 +7,5 @@
   GSTAR_FILTER_NAMES,
   GSTAR_SECF_FLAGS,
+  GSTAR_UCDIST,
   GSTAR_AVE_AP_MAG,
   GSTAR_AVE_MAG_20,
@@ -273,4 +274,8 @@
 	  /* M_80 */
 	  for (j = 0; j < Nsecfilt; j++) printPhotcodeSequence (&catalog.average[k], &catalog.secfilt[Nsecfilt*k], j, GSTAR_AVE_MAG_80);;
+	  gprint (GP_LOG, "\n");
+
+	  /* UCDIST */
+	  for (j = 0; j < Nsecfilt; j++) printPhotcodeSequence (&catalog.average[k], &catalog.secfilt[Nsecfilt*k], j, GSTAR_UCDIST);;
 	  gprint (GP_LOG, "\n");
 
@@ -495,4 +500,12 @@
       break;
 
+    case GSTAR_UCDIST: /* ubercal distance */
+      if (seq == -1) {
+	gprint (GP_LOG, "%5d ", 0);
+      } else {
+	gprint (GP_LOG, "%5d ", secfilt[seq].ubercalDist);
+      }
+      break;
+
     case GSTAR_AVE_AP_MAG: /* average ap mags */
       if (seq == -1) {
