Changeset 10013 in ntrip for trunk/BNC/src/PPP/pppFilter.cpp


Ignore:
Timestamp:
Mar 18, 2023, 10:27:46 PM (13 months ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/pppFilter.cpp

    r10012 r10013  
    7878    return failure;
    7979  }
    80 #ifdef BNC_DEBUG_PPP
    81   if (OPT->_obsModelType == OPT->DCMcodeBias ||
    82       OPT->_obsModelType == OPT->DCMphaseBias) {
    83     _parlist.printParams(_epoTime);
    84   }
    85 #endif
    8680
    8781  // Status Vector, Variance-Covariance Matrix
     
    419413    const vector<t_pppSatObs*> &obsVector, const t_prn &refPrn,
    420414    bool preProcessing) {
    421   const double SLIP = 50.0;
     415  const double SLIP = 500.0;
    422416  char sys = refPrn.system();
    423417  string epoTimeStr = string(_epoTime);
     
    513507      int ind = par->indexNew();
    514508      t_lc::type tLC = par->tLC();
    515       if (tLC != lc) {continue;}
     509      //if (tLC != lc) {continue;}
    516510      LOG << string(_epoTime) << " RESET " << par->toString() << endl;
    517511      delete par;
     
    719713  }
    720714
    721 #ifdef BNC_DEBUG_PPP
    722   _parlist.printParams(_epoTime);
    723 #endif
    724 
    725715  const QList<char> &usedSystems = _parlist.usedSystems();
    726716  for (int iSys = 0; iSys < usedSystems.size(); iSys++) {
     
    752742    unsigned nPar = _parlist.nPar();
    753743
    754     Matrix AA(maxObs, nPar);
     744    Matrix AA(maxObs, nPar); AA = 0.0;    cout << "AA Ncols/Nrows: " << AA.Ncols() << "/" << AA.Nrows() << "  nPar: "  << nPar << endl;
    755745
    756746    // Real Observations
     
    776766    }
    777767    _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
    782769    if (_datumTrafo->prepareAA(AA.SubMatrix(1, iObs + 1, 1, nPar), 2)  != success) {
    783770      return failure;
Note: See TracChangeset for help on using the changeset viewer.