Changeset 6143 in ntrip for trunk


Ignore:
Timestamp:
Sep 13, 2014, 5:15:24 PM (10 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src
Files:
2 edited

Legend:

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

    r6141 r6143  
    8181/////////////////////////////////////////////////////////////////////////////
    8282void t_pppEphPool::t_satEphPool::putOrbCorrection(t_orbCorr* corr) {
    83   cout << "ORB: " << corr->_prn.toString() << ' ' << corr->IOD() << endl;
    8483  for (unsigned ii = 0; ii < _ephs.size(); ii++) {
    8584    t_eph* eph = _ephs[ii];
     
    8988    }
    9089  }
    91   cout << "wrong" << endl;
    9290  delete corr;
    9391}
     
    9694/////////////////////////////////////////////////////////////////////////////
    9795void t_pppEphPool::t_satEphPool::putClkCorrection(t_clkCorr* corr) {
    98   cout << "CLK: " << corr->_prn.toString() << ' ' << corr->IOD() << ' ' << corr->_dClk << endl;
    99   bool set = false;
    10096  for (unsigned ii = 0; ii < _ephs.size(); ii++) {
    10197    t_eph* eph = _ephs[ii];
    10298    if (eph->IOD() == corr->IOD()) {
    10399      eph->setClkCorr(corr);
    104       set = true;
    105100    }
    106   }
    107   if (!set) {
    108     cout << "wrong" << endl;
    109101  }
    110102  delete corr;
     
    115107t_irc t_pppEphPool::t_satEphPool::getCrd(const bncTime& tt, ColumnVector& xc,
    116108                                           ColumnVector& vv) const {
    117   cout << "getCrd " << endl;
    118109  for (unsigned ii = 0; ii < _ephs.size(); ii++) {
    119110    t_eph* eph = _ephs[ii];
    120111    t_irc irc = eph->getCrd(tt, xc, vv, OPT->useOrbClkCorr());
    121     cout << "getCrd " << eph->prn().toString() << ' ' << irc << endl;
    122112    if (irc == success) {
    123113      if (eph->prn().system() == 'R') {
  • trunk/BNC/src/pppRun.cpp

    r6141 r6143  
    228228  // Process the oldest epochs
    229229  // ------------------------
    230   cout << "epoData " << _epoData.size() << endl;
    231 
    232230  while (_epoData.size() && !waitForCorr(_epoData.front()->_time)) {
    233231
    234232    const vector<t_satObs*>& satObs = _epoData.front()->_satObs;
    235 
    236     cout << "satObs " << satObs.size() << endl;
    237233
    238234    t_output output;
Note: See TracChangeset for help on using the changeset viewer.