Changeset 10013 in ntrip for trunk/BNC/src/PPP/pppFilter.cpp
- Timestamp:
- Mar 18, 2023, 10:27:46 PM (3 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppFilter.cpp
r10012 r10013 78 78 return failure; 79 79 } 80 #ifdef BNC_DEBUG_PPP81 if (OPT->_obsModelType == OPT->DCMcodeBias ||82 OPT->_obsModelType == OPT->DCMphaseBias) {83 _parlist.printParams(_epoTime);84 }85 #endif86 80 87 81 // Status Vector, Variance-Covariance Matrix … … 419 413 const vector<t_pppSatObs*> &obsVector, const t_prn &refPrn, 420 414 bool preProcessing) { 421 const double SLIP = 50 .0;415 const double SLIP = 500.0; 422 416 char sys = refPrn.system(); 423 417 string epoTimeStr = string(_epoTime); … … 513 507 int ind = par->indexNew(); 514 508 t_lc::type tLC = par->tLC(); 515 if (tLC != lc) {continue;}509 //if (tLC != lc) {continue;} 516 510 LOG << string(_epoTime) << " RESET " << par->toString() << endl; 517 511 delete par; … … 719 713 } 720 714 721 #ifdef BNC_DEBUG_PPP722 _parlist.printParams(_epoTime);723 #endif724 725 715 const QList<char> &usedSystems = _parlist.usedSystems(); 726 716 for (int iSys = 0; iSys < usedSystems.size(); iSys++) { … … 752 742 unsigned nPar = _parlist.nPar(); 753 743 754 Matrix AA(maxObs, nPar); 744 Matrix AA(maxObs, nPar); AA = 0.0; cout << "AA Ncols/Nrows: " << AA.Ncols() << "/" << AA.Nrows() << " nPar: " << nPar << endl; 755 745 756 746 // Real Observations … … 776 766 } 777 767 _datumTrafo->updateIndices(sys, iObs + 1); 778 #ifdef BNC_DEBUG_PPP 779 LOG << "AA Ncols/Nrows: " << AA.Ncols() << "/" << AA.Nrows() << " nPar: " << nPar << endl; 780 LOG << "AA.SubMatrix(1 .. " << iObs+1 << " , 1 .. " << nPar << ")" << endl; 781 #endif 768 782 769 if (_datumTrafo->prepareAA(AA.SubMatrix(1, iObs + 1, 1, nPar), 2) != success) { 783 770 return failure;
Note:
See TracChangeset
for help on using the changeset viewer.