Index: trunk/BNC/src/orbComp/sp3Comp.cpp
===================================================================
--- trunk/BNC/src/orbComp/sp3Comp.cpp	(revision 6348)
+++ trunk/BNC/src/orbComp/sp3Comp.cpp	(revision 6349)
@@ -95,4 +95,17 @@
   }
 
+  try {
+    compare();
+  }
+  catch (const string& error) {
+    *_log << "ERROR: " << error.c_str() << endl;
+    emit finished();
+    return;
+  }
+  catch (const char* error) {
+    *_log << "ERROR: " << error << endl;
+    emit finished();
+    return;
+  }
 
   // Exit (thread)
@@ -212,11 +225,15 @@
         if (epochOK) {
           epochs.push_back(epo);
+          cout << "OK: " << string(epo->_tt) << endl;
         }
         else {
           delete epo;
         }
-      }
-    }
-  }
+        break;
+      }
+    }
+  }
+
+  cout << "NUMEPO: " << epochs.size() << endl;
 
   // Transform xyz into radial, along-track, and out-of-plane
