Changeset 3465 in ntrip for trunk/BNC/combination
- Timestamp:
- Sep 23, 2011, 7:03:47 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/combination/bnccomb.cpp
r3464 r3465 34 34 const double sig0_offAC = 1000.0; 35 35 const double sig0_offACSat = 100.0; 36 const double sigP_offACSat = 0.0 1;36 const double sigP_offACSat = 0.05; 37 37 const double sig0_clkSat = 100.0; 38 38 … … 721 721 for (int iPar = 1; iPar <= _params.size(); iPar++) { 722 722 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; 727 726 } 728 727 } … … 734 733 for (int iPar = 1; iPar <= _params.size(); iPar++) { 735 734 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) { 737 738 AA(nObs+iCond, iPar) = 1.0; 738 739 }
Note:
See TracChangeset
for help on using the changeset viewer.