Changeset 6160 in ntrip for trunk/BNC/src/combination
- Timestamp:
- Sep 14, 2014, 11:13:25 AM (11 years ago)
- Location:
- trunk/BNC/src/combination
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/combination/bnccomb.cpp
r6159 r6160 547 547 if (pp->type == cmbParam::clkSat) { 548 548 if (resCorr.find(pp->prn) != resCorr.end()) { 549 resCorr[pp->prn]->_dClk = pp->xx / t_CST::c; 549 resCorr[pp->prn]->_dClkResult = pp->xx / t_CST::c; 550 550 } 551 551 } … … 669 669 out << "Full Clock " << corr->_prn << " " << corr->_iod << " "; 670 670 out.setFieldWidth(14); 671 out << (xc(4) + corr->_dClk) * t_CST::c << endl; 671 out << (xc(4) + corr->_dClkResult) * t_CST::c << endl; 672 672 out.setFieldWidth(0); 673 673 } … … 736 736 corr->_prn.toAscii().data(), 737 737 corr->_iod, 738 corr->_dClk * t_CST::c, 738 corr->_dClkResult * t_CST::c, 739 739 corr->_orbCorr._xr[0], 740 740 corr->_orbCorr._xr[1], … … 806 806 } 807 807 808 ll(iObs) = corr->_dClk * t_CST::c - DotProduct(AA.Row(iObs), x0); 808 ll(iObs) = corr->_clkCorr._dClk * t_CST::c - DotProduct(AA.Row(iObs), x0); 809 809 } 810 810 … … 1001 1001 << corr->_acName << ' ' << corr->_prn; 1002 1002 out.setFieldWidth(6); 1003 out << " dClk = " << corr->_dClk * t_CST::c << " res = " << vv[ii] << endl; 1003 out << " dClk = " << corr->_dClkResult * t_CST::c << " res = " << vv[ii] << endl; 1004 1004 out.setFieldWidth(0); 1005 1005 } -
trunk/BNC/src/combination/bnccomb.h
r6159 r6160 66 66 public: 67 67 cmbCorr() { 68 _eph = 0; 69 _iod = 0; 68 _eph = 0; 69 _iod = 0; 70 _dClkResult = 0.0; 70 71 } 71 72 ~cmbCorr() {} … … 74 75 int _iod; 75 76 const t_eph* _eph; 76 t_orbCorr _orbCorr; // used for input77 t_clkCorr _clkCorr; // used for input77 t_orbCorr _orbCorr; 78 t_clkCorr _clkCorr; 78 79 QString _acName; 79 double _dClk ; // used for output80 double _dClkResult; 80 81 ColumnVector _diffRao; 81 82 QString ID() {return _acName + "_" + _prn;}
Note:
See TracChangeset
for help on using the changeset viewer.