Index: /trunk/BNC/src/rinex/graphwin.h
===================================================================
--- /trunk/BNC/src/rinex/graphwin.h	(revision 4356)
+++ /trunk/BNC/src/rinex/graphwin.h	(revision 4357)
@@ -38,7 +38,7 @@
   t_colorMap() : QwtLinearColorMap(Qt::darkBlue, Qt::yellow) {
     addColorStop(0.05, Qt::blue);
-//    addColorStop(0.30, Qt::cyan);
-//    addColorStop(0.60, Qt::green);
-    addColorStop(9.98, Qt::red);
+    addColorStop(0.30, Qt::cyan);
+    addColorStop(0.60, Qt::green);
+    addColorStop(0.98, Qt::red);
   }
 };
Index: /trunk/BNC/src/rinex/reqcanalyze.cpp
===================================================================
--- /trunk/BNC/src/rinex/reqcanalyze.cpp	(revision 4356)
+++ /trunk/BNC/src/rinex/reqcanalyze.cpp	(revision 4357)
@@ -51,4 +51,6 @@
 using namespace std;
 
+const double SLIPTRESH = 5.0; // cycle-slip threshold (meters)
+
 // Constructor
 ////////////////////////////////////////////////////////////////////////////
@@ -103,6 +105,7 @@
       }
     }
-
-    qDebug() << maxMP;
+    if (maxMP > SLIPTRESH) {
+    }
+    
 
     QwtInterval scaleInterval(0.0, maxMP);
@@ -265,5 +268,4 @@
 
   const int    LENGTH = 10;  // number of epochs in one chunk
-  const double SLIP   = 5.0; // cycle-slip threshold
 
   int numEpo = satStat.anaObs.size();
@@ -288,5 +290,5 @@
         double diff1 = anaObs->_MP1 - satStat.anaObs[iEpo-1]->_MP1;
         double diff2 = anaObs->_MP2 - satStat.anaObs[iEpo-1]->_MP2;
-        if (fabs(diff1) > SLIP || fabs(diff2) > SLIP) {
+        if (fabs(diff1) > SLIPTRESH || fabs(diff2) > SLIPTRESH) {
           slipFlag = true;
           break;
