Changeset 9783 in ntrip for trunk/BNC/src/PPP/pppClient.cpp


Ignore:
Timestamp:
Jun 27, 2022, 5:09:40 PM (22 months ago)
Author:
stuerze
Message:

some changes regarding PPP

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/pppClient.cpp

    r9607 r9783  
    304304    }
    305305    if (iObs + 1 < _opt->_minObs) {
    306       LOG << "t_pppClient::cmpBancroft not enough observations: " << iObs + 1  << endl;
     306      LOG << "t_pppClient::cmpBancroft not enough observations: " << iObs + 1;
    307307      return failure;
    308308    }
     
    335335      if (print && _numEpoProcessing == 1) {
    336336        LOG.setf(ios::fixed);
     337        LOG << "\nPPP of Epoch ";
     338        if (!_epoTimeRover.undef()) LOG << string(_epoTimeRover);
     339        LOG << "\n---------------------------------------------------------------\n";
    337340        LOG << string(epoTime) << " BANCROFT:"        << ' '
    338341            << setw(14) << setprecision(3) << xyzc[0] << ' '
     
    376379//////////////////////////////////////////////////////////////////////////////
    377380void t_pppClient::finish(t_irc irc, int ind) {
    378 
     381#ifdef BNC_DEBUG_PPP
    379382  LOG << "t_pppClient::finish(" << ind << "): " << irc << endl;
     383#endif
    380384
    381385  clearObs();
     
    495499      }
    496500
    497       if (_numEpoProcessing == 1) {
    498         LOG << "\nPPP of Epoch ";
    499         if (!_epoTimeRover.undef()) LOG << string(_epoTimeRover);
    500         LOG << "\n---------------------------------------------------------------\n";
    501       }
    502 
    503501      for (int iter = 1; iter <= 2; iter++) {
    504502        ColumnVector xyzc(4); xyzc = 0.0;
     
    507505          return finish(failure,3);
    508506        }
     507
    509508        if (cmpModel(_staRover, xyzc, _obsRover) != success) {
    510509          return finish(failure,4);
     
    525524      // use observations only if satellite code biases are available
    526525      // ------------------------------------------------------------
    527       if (!_opt->_corrMount.empty()&&
     526      if (!_opt->_corrMount.empty() &&
    528527          (OPT->_obsModelType == OPT->DCMcodeBias ||
    529528           OPT->_obsModelType == OPT->DCMphaseBias)) {
Note: See TracChangeset for help on using the changeset viewer.