Changeset 6022 in ntrip


Ignore:
Timestamp:
Aug 21, 2014, 10:11:07 AM (10 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/pppSatObs.h

    r6021 r6022  
    3333                              std::map<t_frequency::type, double>& codeCoeff,
    3434                              std::map<t_frequency::type, double>& phaseCoeff) const;
    35   double              lc(t_lc::type tLC);
    3635  double              lambda(t_lc::type tLC) const;
    3736  double              sigma(t_lc::type tLC) const;
     
    3938  bool                outlier() const {return _outlier;}
    4039  void                setOutlier() {_outlier = true;}
    41   int                 channel() const {return _channel;}
    4240  void                setRes(t_lc::type tLC, double res);
    4341  double              getRes(t_lc::type tLC) const;
     
    8987      _tide    = 0.0;
    9088      _windUp  = 0.0;
    91       _antPco1 = 0.0;
    92       _antPco2 = 0.0;
    93       _biasC1  = 0.0;
    94       _biasC2  = 0.0;
    95       _biasL1  = 0.0;
    96       _biasL2  = 0.0;
     89      for (unsigned ii = 0; ii < t_frequency::max; ii++) {
     90        _antPCO[ii]    = 0.0;
     91        _codeBias[ii]  = 0.0;
     92        _phaseBias[ii] = 0.0;
     93      }
    9794    }
    9895    bool   _set;
     
    107104    double _tide;
    108105    double _windUp;
    109     double _antPco1;
    110     double _antPco2;
    111     double _biasC1;
    112     double _biasC2;
    113     double _biasL1;
    114     double _biasL2;
     106    double _antPCO[t_frequency::max];
     107    double _codeBias[t_frequency::max];
     108    double _phaseBias[t_frequency::max];
    115109  };
    116110
Note: See TracChangeset for help on using the changeset viewer.