Changeset 6135 in ntrip


Ignore:
Timestamp:
Sep 13, 2014, 9:04:30 AM (10 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src
Files:
1 added
3 edited

Legend:

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

    r6104 r6135  
    88#include "pppOptions.h"
    99#include "pppModel.h"
     10#include "satObs.h"
    1011
    1112class bncAntex;
  • trunk/BNC/src/PPP/pppSatObs.h

    r6027 r6135  
    1 #ifndef SATOBS_H
    2 #define SATOBS_H
     1#ifndef PPPSATOBS_H
     2#define PPPSATOBS_H
    33
    44#include <string>
     
    66#include <newmat.h>
    77#include "pppInclude.h"
     8#include "satObs.h"
    89#include "bnctime.h"
    910
  • trunk/BNC/src/pppInclude.h

    r6103 r6135  
    1010#include "ephemeris.h"
    1111#include "t_prn.h"
     12#include "satObs.h"
    1213
    1314namespace BNC_PPP {
     
    3435  std::string  _log;         
    3536  bool         _error;       
    36 };
    37 
    38 class t_frqObs  {
    39  public:
    40   t_frqObs() {
    41     _code            = 0.0;         
    42     _codeValid       = false;     
    43     _phase           = 0.0;         
    44     _phaseValid      = false;   
    45     _doppler         = 0.0;       
    46     _dopplerValid    = false; 
    47     _snr             = 0.0;           
    48     _snrValid        = false;     
    49     _slip            = false;         
    50     _slipCounter     = 0;   
    51     _biasJumpCounter = 0;
    52   }
    53   std::string       _rnxType2ch;
    54   double            _code;         
    55   bool              _codeValid;     
    56   double            _phase;         
    57   bool              _phaseValid;   
    58   double            _doppler;       
    59   bool              _dopplerValid; 
    60   double            _snr;           
    61   bool              _snrValid;     
    62   bool              _slip;         
    63   int               _slipCounter;   
    64   int               _biasJumpCounter;
    65 };
    66 
    67 class t_satObs {
    68  public:
    69   t_satObs() {}
    70   ~t_satObs() {for (unsigned ii = 0; ii < _obs.size(); ii++) delete _obs[ii];}
    71   t_prn                  _prn;
    72   bncTime                _time;
    73   std::vector<t_frqObs*> _obs;
    7437};
    7538
Note: See TracChangeset for help on using the changeset viewer.