Changeset 6465 in ntrip
- Timestamp:
- Dec 27, 2014, 6:04:02 PM (10 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppEphPool.cpp
r6143 r6465 38 38 void t_pppEphPool::putOrbCorrection(t_orbCorr* corr) { 39 39 if (corr) { 40 _satEphPool[corr-> prn().toInt()].putOrbCorrection(corr);40 _satEphPool[corr->_prn.toInt()].putOrbCorrection(corr); 41 41 } 42 42 } … … 46 46 void t_pppEphPool::putClkCorrection(t_clkCorr* corr) { 47 47 if (corr) { 48 _satEphPool[corr-> prn().toInt()].putClkCorrection(corr);48 _satEphPool[corr->_prn.toInt()].putClkCorrection(corr); 49 49 } 50 50 } … … 83 83 for (unsigned ii = 0; ii < _ephs.size(); ii++) { 84 84 t_eph* eph = _ephs[ii]; 85 if (eph->IOD() == corr-> IOD()) {85 if (eph->IOD() == corr->_iod) { 86 86 eph->setOrbCorr(corr); 87 87 return; … … 96 96 for (unsigned ii = 0; ii < _ephs.size(); ii++) { 97 97 t_eph* eph = _ephs[ii]; 98 if (eph->IOD() == corr-> IOD()) {98 if (eph->IOD() == corr->_iod) { 99 99 eph->setClkCorr(corr); 100 100 } -
trunk/BNC/src/pppInclude.h
r6463 r6465 116 116 virtual void putOrbCorrections(const std::vector<t_orbCorr*>& corr) = 0; 117 117 virtual void putClkCorrections(const std::vector<t_clkCorr*>& corr) = 0; 118 virtual void put Biases(const std::vector<t_satCodeBias*>& satCodeBias) = 0;118 virtual void putCodeBiases(const std::vector<t_satCodeBias*>& satCodeBias) = 0; 119 119 }; 120 120 -
trunk/BNC/src/satObs.cpp
r6462 r6465 44 44 // 45 45 //////////////////////////////////////////////////////////////////////////// 46 void t_clkCorr::readEpoch( std::istream* in, QList<t_clkCorr>& corrList) {46 void t_clkCorr::readEpoch(const QStringList& lines, QList<t_clkCorr>& corrList) { 47 47 } 48 48 … … 87 87 // 88 88 //////////////////////////////////////////////////////////////////////////// 89 void t_orbCorr::readEpoch( std::istream* in, QList<t_orbCorr>& corrList) {89 void t_orbCorr::readEpoch(const QStringList& lines, QList<t_orbCorr>& corrList) { 90 90 } -
trunk/BNC/src/satObs.h
r6463 r6465 63 63 t_orbCorr() {reset();} 64 64 static void writeEpoch(std::ostream* out, const QList<t_orbCorr>& corrList); 65 static void readEpoch(std::istream* in, QList<t_orbCorr>& corrList); 66 void reset(); 67 t_prn prn() const {return _prn;} 68 unsigned short IOD() const {return _iod;} 65 static void readEpoch(const QStringList& lines, QList<t_orbCorr>& corrList); 66 void reset(); 69 67 std::string _staID; 70 68 t_prn _prn; … … 80 78 t_clkCorr() {reset();} 81 79 static void writeEpoch(std::ostream* out, const QList<t_clkCorr>& corrList); 82 static void readEpoch(std::istream* in, QList<t_clkCorr>& corrList); 83 void reset(); 84 t_prn prn() const {return _prn;} 85 unsigned short IOD() const {return _iod;} 80 static void readEpoch(const QStringList& lines, QList<t_clkCorr>& corrList); 81 void reset(); 86 82 std::string _staID; 87 83 t_prn _prn;
Note:
See TracChangeset
for help on using the changeset viewer.