Ignore:
Timestamp:
Sep 7, 2014, 6:39:50 PM (10 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r6083 r6085  
    2727 * -------------------------------------------------------------------------
    2828 *
    29  * Class:      bncPPPclient
     29 * Class:      t_pppClient
    3030 *
    3131 * Purpose:    Precise Point Positioning
     
    5656// Global variable holding thread-specific pointers
    5757//////////////////////////////////////////////////////////////////////////////
    58 bncPPPclient* PPP_CLIENT = 0;
     58t_pppClient* PPP_CLIENT = 0;
    5959
    6060// Static function returning thread-specific pointer
    6161//////////////////////////////////////////////////////////////////////////////
    62 bncPPPclient* t_pppClient::instance() {
     62t_pppClient* t_pppClient::instance() {
    6363  return PPP_CLIENT;
    6464}
     
    6666// Constructor
    6767////////////////////////////////////////////////////////////////////////////
    68 bncPPPclient::bncPPPclient(const t_pppOptions* opt) : bncEphUser(false) {
     68t_pppClient::t_pppClient(const t_pppOptions* opt) : bncEphUser(false) {
    6969
    7070  _opt       = new t_pppOptions(*opt);
     
    7777// Destructor
    7878////////////////////////////////////////////////////////////////////////////
    79 bncPPPclient::~bncPPPclient() {
     79t_pppClient::~t_pppClient() {
    8080  _epoData->clear();
    8181
     
    9999//
    100100////////////////////////////////////////////////////////////////////////////
    101 void bncPPPclient::processEpoch(const vector<t_satObs*>& satObs, t_output* output) {
     101void t_pppClient::processEpoch(const vector<t_satObs*>& satObs, t_output* output) {
    102102  QMutexLocker locker(&_mutex);
    103103 
     
    178178//
    179179////////////////////////////////////////////////////////////////////////////
    180 void bncPPPclient::putNewObs(t_satData* satData) {
     180void t_pppClient::putNewObs(t_satData* satData) {
    181181
    182182  // Set Observations GPS and Glonass
     
    234234//
    235235////////////////////////////////////////////////////////////////////////////
    236 void bncPPPclient::putOrbCorrections(const std::vector<t_orbCorr*>& corr) {
     236void t_pppClient::putOrbCorrections(const std::vector<t_orbCorr*>& corr) {
    237237  QMutexLocker locker(&_mutex);
    238238}
     
    240240//
    241241////////////////////////////////////////////////////////////////////////////
    242 void bncPPPclient::putClkCorrections(const std::vector<t_clkCorr*>& corr) {
     242void t_pppClient::putClkCorrections(const std::vector<t_clkCorr*>& corr) {
    243243  QMutexLocker locker(&_mutex);
    244244}
     
    263263// Satellite Position
    264264////////////////////////////////////////////////////////////////////////////
    265 t_irc bncPPPclient::getSatPos(const bncTime& tt, const QString& prn,
     265t_irc t_pppClient::getSatPos(const bncTime& tt, const QString& prn,
    266266                              ColumnVector& xc, ColumnVector& vv) {
    267267  if (_eph.contains(prn)) {
     
    280280// Correct Time of Transmission
    281281////////////////////////////////////////////////////////////////////////////
    282 t_irc bncPPPclient::cmpToT(t_satData* satData) {
     282t_irc t_pppClient::cmpToT(t_satData* satData) {
    283283
    284284  double prange = satData->P3;
Note: See TracChangeset for help on using the changeset viewer.