Changeset 10489 in ntrip for trunk/BNC/src/combination


Ignore:
Timestamp:
May 15, 2024, 4:57:39 PM (4 months ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/combination/bnccomb.cpp

    r10488 r10489  
    957957                                   QMap<QString, cmbCorr*>& resCorr,
    958958                                   ColumnVector& dx) {
    959   int facSys = 1;
    960   if (sys == 'C') {facSys *= 10;}
    961959
    962960  // Prediction Step
     
    10091007        << " Maximum Residuum " << maxRes << ' '
    10101008        << corrs(sys)[maxResIndex-1]->_acName << ' ' << corrs(sys)[maxResIndex-1]->_prn.mid(0,3);
    1011     if (maxRes > (_MAX_RES * facSys)) {
     1009    if (maxRes > _MAX_RES) {
    10121010      for (int iPar = 1; iPar <= _params[sys].size(); iPar++) {
    10131011        cmbParam* pp = _params[sys][iPar-1];
     
    15351533    // ---------------
    15361534    bool removed = false;
    1537     int facSys = 1;
    1538     if (sys == 'C') {facSys *= 10;}
    15391535    QMutableVectorIterator<cmbCorr*> im(corrs(sys));
    15401536    while (im.hasNext()) {
     
    15471543      else if (corr == maxDiff[prn]) {
    15481544        double norm = corr->_diffRao.NormFrobenius();
    1549         if (norm > (_MAX_DISPLACEMENT * facSys)) {
     1545        if (norm > _MAX_DISPLACEMENT) {
    15501546          out << epoTime.datestr().c_str()    << " "
    15511547              << epoTime.timestr().c_str()    << " "
Note: See TracChangeset for help on using the changeset viewer.