Changeset 5810 in ntrip for trunk/BNC/src/PPP/pppParlist.h


Ignore:
Timestamp:
Aug 6, 2014, 11:34:36 AM (10 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r5809 r5810  
    44#include <vector>
    55#include <string>
    6 #include "ppp.h"
     6#include "pppInclude.h"
    77#include "t_prn.h"
    88#include "bnctime.h"
     
    1212class t_satObs;
    1313
    14 class t_param {
     14class t_pppParam {
    1515 public:
    1616  enum e_type {crdX, crdY, crdZ, clkR, amb, offGG, trp, bias};
    1717
    18   t_param(e_type type, const t_prn& prn, t_lc::type tLC,
     18  t_pppParam(e_type type, const t_prn& prn, t_lc::type tLC,
    1919          const std::vector<t_satObs*>* obsVector = 0);
    2020
    21   ~t_param();
     21  ~t_pppParam();
    2222  e_type type() const {return _type;}
    2323  double x0()  const {return _x0;}
     
    2525                 const t_lc::type& tLC) const;
    2626  bool   epoSpec() const {return _epoSpec;}
    27   bool   isEqual(const t_param* par2) const {
     27  bool   isEqual(const t_pppParam* par2) const {
    2828    return (_type == par2->_type && _prn == par2->_prn && _tLC == par2->_tLC);
    2929  }
     
    5252  void     stepAmbNumEpo()             {if (_ambInfo) _ambInfo->_numEpo += 1;}
    5353
    54   static bool sortFunction(const t_param* p1, const t_param* p2) {
     54  static bool sortFunction(const t_pppParam* p1, const t_pppParam* p2) {
    5555    if      (p1->_type != p2->_type) {
    5656      return p1->_type < p2->_type;
     
    9292};
    9393
    94 class t_parlist {
     94class t_pppParlist {
    9595 public:
    96   t_parlist();
    97   ~t_parlist();
     96  t_pppParlist();
     97  ~t_pppParlist();
    9898
    9999  t_irc set(const bncTime& epoTime, const std::vector<t_lc::type>& ambLCs,
     
    101101
    102102  unsigned nPar() const {return _params.size();}
    103   const std::vector<t_param*>& params() const {return _params;}
    104   std::vector<t_param*>& params() {return _params;}
     103  const std::vector<t_pppParam*>& params() const {return _params;}
     104  std::vector<t_pppParam*>& params() {return _params;}
    105105  void printResult(const bncTime& epoTime, const SymmetricMatrix& QQ,
    106106                   const ColumnVector& xx, double ambFixRate) const;
    107107 private:
    108   std::vector<t_param*> _params;
     108  std::vector<t_pppParam*> _params;
    109109};
    110110
Note: See TracChangeset for help on using the changeset viewer.