Changeset 6170 in ntrip
- Timestamp:
- Sep 14, 2014, 1:25:12 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/combination/bnccomb.cpp
r6169 r6170 713 713 if (_antex->satCoMcorrection(corr->_prn, Mjd, xc.Rows(1,3), dx) != success) { 714 714 dx = 0; 715 cout << "antenna not found " << corr->_prn.toAscii().data() << endl;715 _log += "antenna not found " + corr->_prn.toAscii() + '\n'; 716 716 } 717 717 } … … 807 807 808 808 int iObs = 0; 809 810 cout << "nObs, nCon, nPar: " << nObs << ' ' << nCon << ' ' << nPar << endl;811 812 for (int iPar = 1; iPar <= _params.size(); iPar++) {813 cmbParam* pp = _params[iPar-1];814 cout << "PAR " << iPar << ' ' << pp->toString().toAscii().data() << endl;815 }816 817 809 QVectorIterator<cmbCorr*> itCorr(corrs()); 818 810 while (itCorr.hasNext()) { … … 824 816 if (corr->_acName == _masterOrbitAC && resCorr.find(prn) == resCorr.end()) { 825 817 resCorr[prn] = new cmbCorr(*corr); 826 cout << "resCor " << corr->_acName.toAscii().data() << ' '827 << prn.toAscii().data() << endl;828 818 } 829 819 … … 834 824 835 825 ll(iObs) = corr->_clkCorr._dClk * t_CST::c - DotProduct(AA.Row(iObs), x0); 836 cout << "iObs, AC, prn, ll: " << iObs << ' ' << corr->_acName.toAscii().data() << ' '837 << corr->_prn.toAscii().data() << ' ' << ll(iObs) << endl;838 826 } 839 827
Note:
See TracChangeset
for help on using the changeset viewer.