Changeset 10494 in ntrip for trunk/BNC/src/combination
- Timestamp:
- May 22, 2024, 10:05:04 PM (6 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/combination/bnccomb.cpp
r10493 r10494 958 958 QMap<QString, cmbCorr*>& resCorr, 959 959 ColumnVector& dx) { 960 int facSys = 1; 961 if (sys == 'C') {facSys *= 3;} 962 if (sys == 'R') {facSys *= 2;} 960 963 961 // Prediction Step 964 962 // --------------- … … 1010 1008 << " Maximum Residuum " << maxRes << ' ' 1011 1009 << corrs(sys)[maxResIndex-1]->_acName << ' ' << corrs(sys)[maxResIndex-1]->_prn.mid(0,3); 1010 double facSys = 1.0; 1011 if (sys == 'C' && 1012 corrs(sys)[maxResIndex-1]->_prn.mid(1,3).toInt() <= 16) { 1013 facSys *= 10.0; 1014 } 1012 1015 if (maxRes > (_MAX_RES * facSys)) { 1013 1016 for (int iPar = 1; iPar <= _params[sys].size(); iPar++) { … … 1536 1539 // --------------- 1537 1540 bool removed = false; 1538 int facSys = 1;1539 if (sys == 'C') {facSys *= 3;}1540 if (sys == 'R') {facSys *= 2;}1541 1541 QMutableVectorIterator<cmbCorr*> im(corrs(sys)); 1542 1542 while (im.hasNext()) { … … 1549 1549 else if (corr == maxDiff[prn]) { 1550 1550 double norm = corr->_diffRao.NormFrobenius(); 1551 double facSys = 1.0; 1552 if (sys == 'C' && 1553 prn.mid(1,3).toInt() <= 16) { 1554 facSys *= 10.0; 1555 } 1551 1556 if (norm > (_MAX_DISPLACEMENT * facSys)) { 1552 1557 out << epoTime.datestr().c_str() << " "
Note:
See TracChangeset
for help on using the changeset viewer.