Index: trunk/BNC/combination/bnccomb.cpp
===================================================================
--- trunk/BNC/combination/bnccomb.cpp	(revision 3496)
+++ trunk/BNC/combination/bnccomb.cpp	(revision 3497)
@@ -541,5 +541,5 @@
   // Check Satellite Positions for Outliers
   // --------------------------------------
-  if (checkOrbits() != success) {
+  if (checkOrbits(out) != success) {
     return failure;
   }
@@ -849,5 +849,5 @@
   // Check Satellite Positions for Outliers
   // --------------------------------------
-  if (checkOrbits() != success) {
+  if (checkOrbits(out) != success) {
     return failure;
   }
@@ -998,5 +998,5 @@
 // Check Satellite Positions for Outliers
 ////////////////////////////////////////////////////////////////////////////
-t_irc bncComb::checkOrbits() {
+t_irc bncComb::checkOrbits(QTextStream& out) {
 
   const double MAX_DISPLACEMENT = 0.20;
@@ -1067,4 +1067,11 @@
         double norm = corr->diffRao.norm_Frobenius();
         if (norm > MAX_DISPLACEMENT) {
+          out << _resTime.datestr().c_str()    << " "
+              << _resTime.timestr().c_str()    << " "
+              << "Orbit Outlier: " 
+              << corr->acName.toAscii().data() << " " 
+              << prn.toAscii().data()          << " "
+              << corr->iod                     << " " 
+              << norm                          << endl;
           im.remove();
           removed = true;
@@ -1078,15 +1085,4 @@
   }
 
-//  //// beg test
-//  QVectorIterator<cmbCorr*> it(corrs());
-//  while (it.hasNext()) {
-//    cmbCorr* corr = it.next();
-//    QString  prn  = corr->prn;
-//    cout << corr->acName.toAscii().data() << " " << prn.toAscii().data() << " "
-//         << corr->iod << " " << corr->diffRao.t();
-//  }
-//  cout << endl;
-//  //// end tets
-
   return success;
 }
Index: trunk/BNC/combination/bnccomb.h
===================================================================
--- trunk/BNC/combination/bnccomb.h	(revision 3496)
+++ trunk/BNC/combination/bnccomb.h	(revision 3497)
@@ -88,5 +88,5 @@
   void printResults(QTextStream& out, const QMap<QString, t_corr*>& resCorr);
   void switchToLastEph(const t_eph* lastEph, t_corr* corr);
-  t_irc checkOrbits();
+  t_irc checkOrbits(QTextStream& out);
 
   QVector<cmbCorr*>& corrs() {return _buffer[_resTime].corrs;}
