Index: trunk/BNC/src/combination/bnccomb.cpp
===================================================================
--- trunk/BNC/src/combination/bnccomb.cpp	(revision 10488)
+++ trunk/BNC/src/combination/bnccomb.cpp	(revision 10489)
@@ -957,6 +957,4 @@
                                    QMap<QString, cmbCorr*>& resCorr,
                                    ColumnVector& dx) {
-  int facSys = 1;
-  if (sys == 'C') {facSys *= 10;}
 
   // Prediction Step
@@ -1009,5 +1007,5 @@
         << " Maximum Residuum " << maxRes << ' '
         << corrs(sys)[maxResIndex-1]->_acName << ' ' << corrs(sys)[maxResIndex-1]->_prn.mid(0,3);
-    if (maxRes > (_MAX_RES * facSys)) {
+    if (maxRes > _MAX_RES) {
       for (int iPar = 1; iPar <= _params[sys].size(); iPar++) {
         cmbParam* pp = _params[sys][iPar-1];
@@ -1535,6 +1533,4 @@
     // ---------------
     bool removed = false;
-    int facSys = 1;
-    if (sys == 'C') {facSys *= 10;}
     QMutableVectorIterator<cmbCorr*> im(corrs(sys));
     while (im.hasNext()) {
@@ -1547,5 +1543,5 @@
       else if (corr == maxDiff[prn]) {
         double norm = corr->_diffRao.NormFrobenius();
-        if (norm > (_MAX_DISPLACEMENT * facSys)) {
+        if (norm > _MAX_DISPLACEMENT) {
           out << epoTime.datestr().c_str()    << " "
               << epoTime.timestr().c_str()    << " "
