Changeset 3465 in ntrip for trunk/BNC


Ignore:
Timestamp:
Sep 23, 2011, 7:03:47 PM (13 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r3464 r3465  
    3434const double sig0_offAC    = 1000.0;
    3535const double sig0_offACSat =  100.0;
    36 const double sigP_offACSat =   0.01;
     36const double sigP_offACSat =   0.05;
    3737const double sig0_clkSat   =  100.0;
    3838
     
    721721  for (int iPar = 1; iPar <= _params.size(); iPar++) {
    722722    cmbParam* pp = _params[iPar-1];
    723     if (AA.Column(iPar).maximum_absolute_value() > 0.0) {
    724       if      (pp->type == cmbParam::clkSat) {
    725         AA(nObs+1, iPar) = 1.0;
    726       }
     723    if ( AA.Column(iPar).maximum_absolute_value() > 0.0 &&
     724         pp->type == cmbParam::clkSat ) {
     725      AA(nObs+1, iPar) = 1.0;
    727726    }
    728727  }
     
    734733    for (int iPar = 1; iPar <= _params.size(); iPar++) {
    735734      cmbParam* pp = _params[iPar-1];
    736       if (pp->type == cmbParam::offACSat && pp->prn == prn) {
     735      if ( AA.Column(iPar).maximum_absolute_value() > 0.0 &&
     736           pp->type == cmbParam::offACSat                 &&
     737           pp->prn == prn) {
    737738        AA(nObs+iCond, iPar) = 1.0;
    738739      }
Note: See TracChangeset for help on using the changeset viewer.