Changeset 10224 in ntrip for trunk/BNC/src/combination
- Timestamp:
- Oct 13, 2023, 11:49:42 AM (18 months ago)
- Location:
- trunk/BNC/src/combination
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/src/combination/bnccomb.cpp ¶
r10221 r10224 625 625 corr->_orbCorr._xr += dRAO; 626 626 corr->_orbCorr._dotXr += dDotRAO; 627 corr->_clkCorr ._dClk -= dC;627 corr->_clkCorr->_dClk -= dC; 628 628 } 629 629 … … 633 633 634 634 for (unsigned ii = 0; ii < clkCorrVec.size(); ii++) { 635 constt_clkCorr* clkCorr = clkCorrVec.at(ii);635 t_clkCorr* clkCorr = clkCorrVec.at(ii); 636 636 QString staID(clkCorr->_staID.c_str()); 637 637 QString prn(clkCorr->_prn.toInternalString().c_str()); … … 660 660 newCorr->_acName = acName; 661 661 newCorr->_weightFactor = weigthFactor; 662 newCorr->_clkCorr = t_clkCorr(static_cast<t_clkCorr>(*clkCorr));662 newCorr->_clkCorr = clkCorr; 663 663 664 664 // Check orbit correction … … 784 784 QTextStream out(&_log, QIODevice::WriteOnly); 785 785 processSystem(epoTime, sys, out); 786 _buffer.remove(sys); 786 787 emit newMessage(_log, false); 787 788 } … … 893 894 } 894 895 895 _buffer.remove(sys); 896 //_buffer.remove(sys); 896 897 } 897 898 … … 1045 1046 1046 1047 // CLOCK 1047 t_clkCorr clkCorr(corr->_clkCorr); 1048 t_clkCorr clkCorr(static_cast<t_clkCorr>(*corr->_clkCorr)); 1048 1049 clkCorr._staID = "INTERNAL"; 1049 1050 clkCorr._dClk = corr->_dClkResult; … … 1185 1186 } 1186 1187 1187 ll(iObs) = (corr->_clkCorr ._dClk * t_CST::c - corr->_satCodeBiasIF) - DotProduct(AA.Row(iObs), x0);1188 ll(iObs) = (corr->_clkCorr->_dClk * t_CST::c - corr->_satCodeBiasIF) - DotProduct(AA.Row(iObs), x0); 1188 1189 1189 1190 PP(iObs, iObs) *= 1.0 / (corr->_weightFactor * corr->_weightFactor); -
TabularUnified trunk/BNC/src/combination/bnccomb.h ¶
r10216 r10224 99 99 cmbCorr() { 100 100 _eph = 0; 101 _clkCorr = 0; 101 102 _iod = 0; 102 103 _dClkResult = 0.0; … … 104 105 _weightFactor = 1.0; 105 106 } 106 ~cmbCorr() {} 107 ~cmbCorr() { 108 109 } 107 110 QString _prn; 108 111 bncTime _time; … … 110 113 t_eph* _eph; 111 114 t_orbCorr _orbCorr; 112 t_clkCorr 115 t_clkCorr* _clkCorr; 113 116 t_satCodeBias _satCodeBias; 114 117 QString _acName;
Note:
See TracChangeset
for help on using the changeset viewer.