Changeset 7972 in ntrip for trunk/BNC/src/PPP/pppClient.cpp


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

File:
1 edited

Legend:

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

    r7927 r7972  
    6363    _antex = 0;
    6464  }
    65 
     65/*
     66  if (!_opt->_blqFileName.empty()) {
     67    _loading = new t_loading(_opt->_blqFileName.c_str());
     68  }
     69  else {
     70    _loading = 0;
     71  }
     72*/
    6673  CLIENTS.setLocalData(this);  // CLIENTS takes ownership over "this"
    6774}
     
    8087  delete _filter;
    8188  delete _tides;
     89  /*
     90  if (_loading) {
     91    delete _loading;
     92  }
     93  */
    8294  clearObs();
    8395}
     
    565577}
    566578
     579//
     580//////////////////////////////////////////////////////////////////////////////
     581void t_pppClient::reset() {
     582
     583  // to delete all parameters
     584  delete _filter;
     585  _filter   = new t_pppFilter();
     586
     587  // to delete old orbit and clock corrections
     588  delete _ephPool;
     589  _ephPool  = new t_pppEphPool();
     590
     591  // to delete old code biases
     592  delete _obsPool;
     593  _obsPool  = new t_pppObsPool();
     594}
Note: See TracChangeset for help on using the changeset viewer.