- Timestamp:
- Aug 21, 2014, 9:02:57 AM (10 years ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppInclude.h
r6017 r6018 38 38 public: 39 39 t_frqObs() { 40 _freqType = t_frequency::dummy; 40 41 _freq = 0.0; 41 42 _code = 0.0; … … 51 52 _biasJumpCounter = 0; 52 53 } 53 std::string _rnxType2ch; 54 double _freq; 55 double _code; 56 bool _codeValid; 57 double _phase; 58 bool _phaseValid; 59 double _doppler; 60 bool _dopplerValid; 61 double _snr; 62 bool _snrValid; 63 bool _slip; 64 int _slipCounter; 65 int _biasJumpCounter; 54 std::string _rnxType2ch; 55 t_frequency::type _freqType; 56 double _freq; 57 double _code; 58 bool _codeValid; 59 double _phase; 60 bool _phaseValid; 61 double _doppler; 62 bool _dopplerValid; 63 double _snr; 64 bool _snrValid; 65 bool _slip; 66 int _slipCounter; 67 int _biasJumpCounter; 66 68 }; 67 69 -
trunk/BNC/src/PPP/pppSatObs.cpp
r6017 r6018 95 95 if (obs->_rnxType2ch == obsType && obs->_codeValid && obs->_phaseValid) { 96 96 _obs[iFreq] = new t_frqObs(*obs); 97 _obs[iFreq]->_freqType = t_frequency::type(iFreq); 97 98 } 98 99 } -
trunk/BNC/src/PPP/pppSatObs.h
r6017 r6018 16 16 t_pppSatObs(const t_satObs& satObs); 17 17 ~t_pppSatObs(); 18 bool isValid() const; 18 19 const t_prn& prn() const {return _prn;} 19 20 const ColumnVector& xc() const {return _xcSat;} … … 28 29 bool modelSet() const {return _model._set;} 29 30 void printModel() const; 30 double lc(t_lc::type tLC, double L1, double L2, 31 double C1, double C2, ColumnVector* coeff = 0) const; 31 double lc(t_lc::type tLC); 32 32 double lambda(t_lc::type tLC) const; 33 33 double sigma(t_lc::type tLC) const;
Note:
See TracChangeset
for help on using the changeset viewer.