Changeset 7972 in ntrip for trunk/BNC/src/PPP_SSR_I


Ignore:
Timestamp:
Jun 29, 2016, 3:04:13 PM (8 years ago)
Author:
stuerze
Message:

consideration of provider ID changes in SSR correction streams during PPP processing

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

Legend:

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

    r7929 r7972  
    428428  return failure;
    429429}
     430
     431//
     432////////////////////////////////////////////////////////////////////////////
     433void t_pppClient::reset() {
     434
     435  // to delete all parameters
     436  delete _filter;
     437  _filter   = new t_pppFilter(this);
     438
     439  // to delete old orbit and clock corrections
     440  delete _ephUser;
     441  _ephUser  = new bncEphUser(false);
     442
     443  // to delete old code biases
     444  delete _pppUtils;
     445  _pppUtils = new t_pppUtils();
     446
     447}
  • trunk/BNC/src/PPP_SSR_I/pppClient.h

    r7609 r7972  
    5252  std::ostringstream& log() {return *_log;}
    5353  const t_pppOptions* opt() const {return _opt;}
     54  void                reset();
    5455
    5556 private:
Note: See TracChangeset for help on using the changeset viewer.