Changeset 9525 in ntrip


Ignore:
Timestamp:
Oct 25, 2021, 12:42:13 PM (2 years ago)
Author:
stuerze
Message:

method to print parameter added

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

Legend:

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

    r9521 r9525  
    826826}
    827827
     828//
     829////////////////////////////////////////////////////////////////////////////
     830void t_pppParlist::printParams() {
     831  vector<t_pppParam*>::const_iterator it = _params.begin();
     832  while (it != _params.end()) {
     833    t_pppParam* par = *it;
     834    LOG << "par " << par->toString() << "  lastObsTime valid? " << par->lastObsTime().valid()<< endl;
     835  }
     836}
     837
  • trunk/BNC/src/PPP/pppParlist.h

    r9504 r9525  
    7171    return false;
    7272  }
    73  
     73
    7474 private:
    7575  class t_ambInfo {
     
    113113  void printResult(const bncTime& epoTime, const SymmetricMatrix& QQ,
    114114                   const ColumnVector& xx) const;
     115  void printParams();
    115116
    116117 private:
Note: See TracChangeset for help on using the changeset viewer.