Ignore:
Timestamp:
Oct 13, 2023, 11:49:42 AM (9 months ago)
Author:
stuerze
Message:

bug fixed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/combination/bnccomb.cpp

    r10221 r10224  
    625625  corr->_orbCorr._xr    += dRAO;
    626626  corr->_orbCorr._dotXr += dDotRAO;
    627   corr->_clkCorr._dClk  -= dC;
     627  corr->_clkCorr->_dClk  -= dC;
    628628}
    629629
     
    633633
    634634  for (unsigned ii = 0; ii < clkCorrVec.size(); ii++) {
    635     const t_clkCorr* clkCorr = clkCorrVec.at(ii);
     635    t_clkCorr* clkCorr = clkCorrVec.at(ii);
    636636    QString    staID(clkCorr->_staID.c_str());
    637637    QString    prn(clkCorr->_prn.toInternalString().c_str());
     
    660660    newCorr->_acName       = acName;
    661661    newCorr->_weightFactor = weigthFactor;
    662     newCorr->_clkCorr      = t_clkCorr(static_cast<t_clkCorr>(*clkCorr));
     662    newCorr->_clkCorr      = clkCorr;
    663663
    664664    // Check orbit correction
     
    784784    QTextStream out(&_log, QIODevice::WriteOnly);
    785785    processSystem(epoTime, sys, out);
     786    _buffer.remove(sys);
    786787    emit newMessage(_log, false);
    787788  }
     
    893894  }
    894895
    895   _buffer.remove(sys);
     896  //_buffer.remove(sys);
    896897}
    897898
     
    10451046
    10461047    // CLOCK
    1047     t_clkCorr clkCorr(corr->_clkCorr);
     1048    t_clkCorr clkCorr(static_cast<t_clkCorr>(*corr->_clkCorr));
    10481049    clkCorr._staID      = "INTERNAL";
    10491050    clkCorr._dClk       = corr->_dClkResult;
     
    11851186    }
    11861187
    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);
    11881189
    11891190    PP(iObs, iObs) *= 1.0 / (corr->_weightFactor * corr->_weightFactor);
Note: See TracChangeset for help on using the changeset viewer.