Index: /trunk/BNC/src/PPP/pppSatObs.cpp
===================================================================
--- /trunk/BNC/src/PPP/pppSatObs.cpp	(revision 6033)
+++ /trunk/BNC/src/PPP/pppSatObs.cpp	(revision 6034)
@@ -319,11 +319,11 @@
   map<t_frequency::type, double>::const_iterator it;
   for (it = codeCoeff.begin(); it != codeCoeff.end(); it++) {
-    retVal += it->second * OPT->_maxResC1;
+    retVal += it->second * it->second * OPT->_maxResC1 * OPT->_maxResC1;
   }
   for (it = phaseCoeff.begin(); it != phaseCoeff.end(); it++) {
-    retVal += it->second * OPT->_maxResL1;
-  }
-
-  return retVal;
+    retVal += it->second * it->second * OPT->_maxResL1 * OPT->_maxResL1;
+  }
+
+  return sqrt(retVal);
 }
 
