Changeset 6330 in ntrip


Ignore:
Timestamp:
Nov 24, 2014, 1:17:32 PM (9 years ago)
Author:
stuerze
Message:

residual output for combination in filter mode added, combination result "dClkResult" removed from AC specific output because it is zero

File:
1 edited

Legend:

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

    r6174 r6330  
    624624        << " Maximum Residuum " << maxRes << ' '
    625625        << corrs()[maxResIndex-1]->_acName << ' ' << corrs()[maxResIndex-1]->_prn;
    626 
    627626    if (maxRes > _MAXRES) {
    628627      for (int iPar = 1; iPar <= _params.size(); iPar++) {
     
    643642    else {
    644643      out << "  OK" << endl;
     644      out.setRealNumberNotation(QTextStream::FixedNotation);
     645      out.setRealNumberPrecision(4);
     646      for (int ii = 0; ii < corrs().size(); ii++) {
     647        const cmbCorr* corr = corrs()[ii];
     648        out << _resTime.datestr().c_str() << ' '
     649            << _resTime.timestr().c_str() << " "
     650            << corr->_acName << ' ' << corr->_prn;
     651        out.setFieldWidth(10);
     652        out <<  " res = " << vv[ii] << endl;
     653        out.setFieldWidth(0);
     654      }
    645655      break;
    646656    }
     
    10181028            << corr->_acName << ' ' << corr->_prn;
    10191029        out.setFieldWidth(6);
    1020         out << " dClk = " << corr->_dClkResult * t_CST::c << " res = " << vv[ii] << endl;
     1030        out << " res = " << vv[ii] << endl;
    10211031        out.setFieldWidth(0);
    10221032      }
Note: See TracChangeset for help on using the changeset viewer.