Changeset 9618 in ntrip for trunk/BNC/src/PPP/pppSatObs.cpp


Ignore:
Timestamp:
Jan 23, 2022, 9:42:55 PM (2 years ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

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

    r9612 r9618  
    632632////////////////////////////////////////////////////////////////////////////
    633633void t_pppSatObs::printObsMinusComputed() const {
    634 // TODO: LOG should be LOG
    635   cout.setf(ios::fixed);
    636   cout << "\nOBS-COMP for Satellite " << _prn.toString() << (isReference() ? " (Reference Satellite)" : "") << endl
     634// TODO: cout should be LOG
     635  LOG.setf(ios::fixed);
     636  LOG << "\nOBS-COMP for Satellite " << _prn.toString() << (isReference() ? " (Reference Satellite)" : "") << endl
    637637       << "========================== " << endl;
    638638  for (unsigned ii = 0; ii < OPT->LCs(_prn.system()).size(); ii++) {
    639639    t_lc::type tLC = OPT->LCs(_prn.system())[ii];
    640     cout << "OBS-CMP " << setw(4) << t_lc::toString(tLC) << ": " << _prn.toString() << " "
     640    LOG << "OBS-CMP " << setw(4) << t_lc::toString(tLC) << ": " << _prn.toString() << " "
    641641        << setw(12) << setprecision(3) << obsValue(tLC) << " "
    642642        << setw(12) << setprecision(3) << cmpValue(tLC) << " "
     
    644644  }
    645645}
    646 
    647646
    648647//
Note: See TracChangeset for help on using the changeset viewer.