Index: trunk/BNC/src/rinex/reqcanalyze.cpp
===================================================================
--- trunk/BNC/src/rinex/reqcanalyze.cpp	(revision 4700)
+++ trunk/BNC/src/rinex/reqcanalyze.cpp	(revision 4701)
@@ -208,5 +208,5 @@
     *_log << "\nAnalyze File\n"
           <<   "------------\n"
-          << "File:        " << obsFile->fileName().toAscii().data() << endl;
+          << "File:            " << obsFile->fileName().toAscii().data() << endl;
   }
 
@@ -255,5 +255,5 @@
           }
           if (newObs->_slipL1 && newObs->_slipL2) {
-            _obsStat._prnStat[prn]._numSlips += 1;
+            _obsStat._prnStat[prn]._numSlipsFlagged += 1;
           }
         }
@@ -570,5 +570,5 @@
         slipL1 = true;
         slipL2 = true;
-        _obsStat._prnStat[prn]._numSlips += 1;
+        _obsStat._prnStat[prn]._numSlipsFound += 1;
       } 
       else {
@@ -717,25 +717,28 @@
   }
 
-  *_log << "Marker name: " << _obsStat._markerName   << endl 
-        << "Receiver:    " << _obsStat._receiverType << endl
-        << "Antenna:     " << _obsStat._antennaName  << endl
-        << "Start time:  " << _obsStat._startTime.datestr().c_str() << ' '
-                           << _obsStat._startTime.timestr().c_str() << endl
-        << "End time:    " << _obsStat._endTime.datestr().c_str() << ' '
-                           << _obsStat._endTime.timestr().c_str() << endl
-        << "Interval:    " << _obsStat._interval << endl
-        << "# Sat.:      " << _obsStat._prnStat.size() << endl;
-
-  int numObs   = 0;
-  int numSlips = 0;
+  *_log << "Marker name:     " << _obsStat._markerName   << endl 
+        << "Receiver:        " << _obsStat._receiverType << endl
+        << "Antenna:         " << _obsStat._antennaName  << endl
+        << "Start time:      " << _obsStat._startTime.datestr().c_str() << ' '
+                               << _obsStat._startTime.timestr().c_str() << endl
+        << "End time:        " << _obsStat._endTime.datestr().c_str() << ' '
+                               << _obsStat._endTime.timestr().c_str() << endl
+        << "Interval:        " << _obsStat._interval << endl
+        << "# Sat.:          " << _obsStat._prnStat.size() << endl;
+
+  int numObs          = 0;
+  int numSlipsFlagged = 0;
+  int numSlipsFound   = 0;
   QMapIterator<QString, t_prnStat> it(_obsStat._prnStat);
   while (it.hasNext()) {
     it.next();
     const t_prnStat& prnStat = it.value();
-    numObs   += prnStat._numObs;
-    numSlips += prnStat._numSlips;
-  }
-  *_log << "# Obs.:      " << numObs   << endl
-        << "# Slips:     " << numSlips << endl;
+    numObs          += prnStat._numObs;
+    numSlipsFlagged += prnStat._numSlipsFlagged;
+    numSlipsFound   += prnStat._numSlipsFound;
+  }
+  *_log << "# Obs.:          " << numObs          << endl
+        << "# Slips (file):  " << numSlipsFlagged << endl
+        << "# Slips (found): " << numSlipsFound   << endl;
 
   for (int kk = 1; kk <= 4; kk++) {
@@ -744,17 +747,17 @@
     if      (kk == 1) {
       data = dataMP1;
-      text = "Mean MP1:    ";
+      text = "Mean MP1:        ";
     }
     else if (kk == 2) {
       data = dataMP2;
-      text = "Mean MP2:    ";
+      text = "Mean MP2:        ";
     }
     else if (kk == 3) {
       data = dataSNR1;
-      text = "Mean SNR1:   ";
+      text = "Mean SNR1:       ";
     }
     else if (kk == 4) {
       data = dataSNR2;
-      text = "Mean SNR2:   ";
+      text = "Mean SNR2:       ";
     }
     double mean = 0.0;
Index: trunk/BNC/src/rinex/reqcanalyze.h
===================================================================
--- trunk/BNC/src/rinex/reqcanalyze.h	(revision 4700)
+++ trunk/BNC/src/rinex/reqcanalyze.h	(revision 4701)
@@ -49,10 +49,12 @@
  public:
   t_prnStat() {
-    _numObs   = 0;
-    _numSlips = 0;
-    _numGaps  = 0;
+    _numObs          = 0;
+    _numSlipsFlagged = 0;
+    _numSlipsFound   = 0;
+    _numGaps         = 0;
   }
   int _numObs;
-  int _numSlips;
+  int _numSlipsFlagged;
+  int _numSlipsFound;
   int _numGaps;
 };
