Changeset 6143 in ntrip
- Timestamp:
- Sep 13, 2014, 5:15:24 PM (10 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppEphPool.cpp
r6141 r6143 81 81 ///////////////////////////////////////////////////////////////////////////// 82 82 void t_pppEphPool::t_satEphPool::putOrbCorrection(t_orbCorr* corr) { 83 cout << "ORB: " << corr->_prn.toString() << ' ' << corr->IOD() << endl;84 83 for (unsigned ii = 0; ii < _ephs.size(); ii++) { 85 84 t_eph* eph = _ephs[ii]; … … 89 88 } 90 89 } 91 cout << "wrong" << endl;92 90 delete corr; 93 91 } … … 96 94 ///////////////////////////////////////////////////////////////////////////// 97 95 void t_pppEphPool::t_satEphPool::putClkCorrection(t_clkCorr* corr) { 98 cout << "CLK: " << corr->_prn.toString() << ' ' << corr->IOD() << ' ' << corr->_dClk << endl;99 bool set = false;100 96 for (unsigned ii = 0; ii < _ephs.size(); ii++) { 101 97 t_eph* eph = _ephs[ii]; 102 98 if (eph->IOD() == corr->IOD()) { 103 99 eph->setClkCorr(corr); 104 set = true;105 100 } 106 }107 if (!set) {108 cout << "wrong" << endl;109 101 } 110 102 delete corr; … … 115 107 t_irc t_pppEphPool::t_satEphPool::getCrd(const bncTime& tt, ColumnVector& xc, 116 108 ColumnVector& vv) const { 117 cout << "getCrd " << endl;118 109 for (unsigned ii = 0; ii < _ephs.size(); ii++) { 119 110 t_eph* eph = _ephs[ii]; 120 111 t_irc irc = eph->getCrd(tt, xc, vv, OPT->useOrbClkCorr()); 121 cout << "getCrd " << eph->prn().toString() << ' ' << irc << endl;122 112 if (irc == success) { 123 113 if (eph->prn().system() == 'R') { -
trunk/BNC/src/pppRun.cpp
r6141 r6143 228 228 // Process the oldest epochs 229 229 // ------------------------ 230 cout << "epoData " << _epoData.size() << endl;231 232 230 while (_epoData.size() && !waitForCorr(_epoData.front()->_time)) { 233 231 234 232 const vector<t_satObs*>& satObs = _epoData.front()->_satObs; 235 236 cout << "satObs " << satObs.size() << endl;237 233 238 234 t_output output;
Note:
See TracChangeset
for help on using the changeset viewer.