Changeset 5819 in ntrip for trunk/BNC/src/PPP/satobs.h


Ignore:
Timestamp:
Aug 6, 2014, 1:02:08 PM (10 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r5814 r5819  
    1414class t_pppStation;
    1515
    16 class t_satObs {
     16class t_pppSatObs {
    1717 public:
    18   t_satObs(const t_pppSatObs& pppSatObs);
    19   ~t_satObs();
     18  t_pppSatObs(const t_satObs& pppSatObs);
     19  ~t_pppSatObs();
    2020  bool                isValid() const {return _valid;}
    2121  void                prepareObs();
     
    3232  bool                modelSet() const {return _model._set;}
    3333  void                printModel() const;
    34   t_irc               createDifference(const t_satObs* obsBase);
     34  t_irc               createDifference(const t_pppSatObs* obsBase);
    3535  double              lc(t_lc::type tLC, double L1, double L2,
    3636                         double C1, double C2, ColumnVector* coeff = 0) const;
     
    4444
    4545  bool slip() const {
    46     std::map<t_obsType, t_pppObs*>::const_iterator it;
     46    std::map<t_obsType, t_frqObs*>::const_iterator it;
    4747    for (it = _allObs.begin(); it != _allObs.end(); it++) {
    4848      if (it->second->_slip) {
     
    5555  int slipCounter() const {
    5656    int cnt = -1;
    57     std::map<t_obsType, t_pppObs*>::const_iterator it;
     57    std::map<t_obsType, t_frqObs*>::const_iterator it;
    5858    for (it = _allObs.begin(); it != _allObs.end(); it++) {
    5959      if (it->second->_slipCounter > cnt) {
     
    6666  int biasJumpCounter() const {
    6767    int jmp = -1;
    68     std::map<t_obsType, t_pppObs*>::const_iterator it;
     68    std::map<t_obsType, t_frqObs*>::const_iterator it;
    6969    for (it = _allObs.begin(); it != _allObs.end(); it++) {
    7070      if (it->second->_biasJumpCounter > jmp) {
     
    121121  bncTime                        _time;
    122122  int                            _channel;
    123   std::map<t_obsType, t_pppObs*> _allObs;
     123  std::map<t_obsType, t_frqObs*> _allObs;
    124124  bool                           _valid;
    125   t_pppObs*                      _validObs1;
    126   t_pppObs*                      _validObs2;
     125  t_frqObs*                      _validObs1;
     126  t_frqObs*                      _validObs2;
    127127  double                         _f1;
    128128  double                         _f2;
Note: See TracChangeset for help on using the changeset viewer.