Changeset 10015 in ntrip for trunk/BNC/src/PPP/pppFilter.cpp


Ignore:
Timestamp:
Mar 20, 2023, 2:10:04 PM (13 months ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

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

    r10014 r10015  
    6464  _epoTime = epoch->epoTime();
    6565
    66   if (!_firstEpoTime.valid() || !_lastEpoTimeOK.valid()
    67       || (maxSolGap > 0.0 && _epoTime - _lastEpoTimeOK > maxSolGap)) {
     66  if (!_firstEpoTime.valid() ||
     67      !_lastEpoTimeOK.valid()||
     68      (maxSolGap > 0.0 && _epoTime - _lastEpoTimeOK > maxSolGap)) {
    6869    _firstEpoTime = _epoTime;
    6970  }
     
    7273
    7374  const QMap<char, t_pppRefSat*> &refSatMap = epoch->refSatMap();
     75
    7476  const QList<char> &usedSystems = _parlist.usedSystems();
    7577  //--
     
    7880    return failure;
    7981  }
     82  #ifdef BNC_DEBUG_PPP
     83  if (OPT->_obsModelType == OPT->DCMcodeBias ||
     84      OPT->_obsModelType == OPT->DCMphaseBias) {
     85    _parlist.printParams(_epoTime);
     86  }
     87#endif
    8088
    8189  // Status Vector, Variance-Covariance Matrix
     
    102110  bool preProcessing = false;
    103111  if (OPT->_obsModelType == OPT->DCMcodeBias ||
    104   OPT->_obsModelType == OPT->DCMphaseBias) {
     112      OPT->_obsModelType == OPT->DCMphaseBias) {
    105113    preProcessing = true;
    106114    for (int iSys = 0; iSys < usedSystems.size(); iSys++) {
     
    162170    LOG << epoTimeStr << " SATNUM " << sys << ' ' << right << setw(2) << num
    163171        << endl;
    164     if (processSystem(OPT->LCs(sys), obsVector, _refPrn, epoch->pseudoObsIono(),
    165         preProcessing) != success) {
     172    if (processSystem(OPT->LCs(sys), obsVector, _refPrn,
     173        epoch->pseudoObsIono(), preProcessing) != success) {
    166174      LOG << "processSystem !=  success (fin-processing)" << endl;
    167175      if (OPT->_obsModelType == OPT->DCMcodeBias ||
     
    689697  _epoTime = epoch->epoTime();
    690698  LOG.setf(ios::fixed);
    691   LOG << string(_epoTime) << " DATUM TRANSFORMATION " << endl;
     699  LOG << string(_epoTime) << "\nDATUM TRANSFORMATION " << endl;
    692700
    693701  vector<t_pppSatObs*> &allObs = epoch->obsVector();
     
    714722    return failure;
    715723  }
     724#ifdef BNC_DEBUG_PPP
     725  _parlist.printParams(_epoTime);
     726#endif
    716727
    717728  const QList<char> &usedSystems = _parlist.usedSystems();
     
    788799
    789800#ifdef BNC_DEBUG_PPP
    790   LOG << "xFltOld:\n" << xFltOld << endl;
    791   LOG << "xFlt   :\n" << _xFlt   << endl;
     801  //LOG << "xFltOld:\n" << xFltOld << endl;
     802  //LOG << "xFlt   :\n" << _xFlt   << endl;
    792803#endif
    793804
Note: See TracChangeset for help on using the changeset viewer.