Changeset 9590 in ntrip


Ignore:
Timestamp:
Jan 7, 2022, 8:54:55 PM (2 years ago)
Author:
stuerze
Message:

minor changes

Location:
trunk/BNC/src/PPP
Files:
3 edited

Legend:

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

    r9585 r9590  
    2020#include <iomanip>
    2121#include <cmath>
    22 #include <stdlib.h>
    2322#include <string.h>
    2423#include <stdexcept>
  • trunk/BNC/src/PPP/pppFilter.cpp

    r9583 r9590  
    164164                      epoch->pseudoObsIono(), preProcessing) != success) {
    165165      LOG << "processSystem !=  success (fin-processing)" << endl;
    166       _xFlt = xFltOld;
    167       _QFlt = QFltOld;
    168166      if (OPT->_obsModelType == OPT->DCMcodeBias ||
    169167          OPT->_obsModelType == OPT->DCMphaseBias) {
     168        _xFlt = xFltOld;
     169        _QFlt = QFltOld;
    170170        _obsPool->deleteLastEpoch();
    171171        restoreState(3);
  • trunk/BNC/src/PPP/pppSatObs.cpp

    r9588 r9590  
    3131
    3232using namespace BNC_PPP;
    33 using std::cout;
    34 using std::endl;
     33using namespace std;
    3534
    3635// Constructor
     
    314313
    315314  // De-Weight GLONASS
    316   /* -----------------
     315  // -----------------
    317316  if (_prn.system() == 'R') {
    318     retVal *= 5.0;
    319   }*/
     317    retVal *= 2.0;
     318  }
    320319
    321320
     
    597596////////////////////////////////////////////////////////////////////////////
    598597void t_pppSatObs::printObsMinusComputed() const {
    599 // TODO: cout should be LOG
     598// TODO: LOG should be LOG
    600599  cout.setf(ios::fixed);
    601600  cout << "\nOBS-COMP for Satellite " << _prn.toString() << (isReference() ? " (Reference Satellite)" : "") << endl
Note: See TracChangeset for help on using the changeset viewer.