Changeset 10228 in ntrip


Ignore:
Timestamp:
Oct 24, 2023, 3:32:56 PM (6 months ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/satObs.h

    r10038 r10228  
    9292 public:
    9393  t_orbCorr();
    94   t_orbCorr(const t_orbCorr& old) { // copy constructor (deep copy)
    95     _staID      = old._staID;
    96     _prn        = old._prn;
    97     _iod        = old._iod;
    98     _time       = old._time;
    99     _updateInt  = old._updateInt;
    100     _system     = old._system;
    101     _xr         = old._xr;
    102     _dotXr      = old._dotXr;
    103   }
    10494  static void writeEpoch(std::ostream* out, const QList<t_orbCorr>& corrList);
    10595  static void readEpoch(const std::string& epoLine, std::istream& in, QList<t_orbCorr>& corrList);
     
    117107 public:
    118108  t_clkCorr();
    119   t_clkCorr(const t_clkCorr& old) { // copy constructor (deep copy)
    120     _staID      = old._staID;
    121     _prn        = old._prn;
    122     _iod        = old._iod;
    123     _time       = old._time;
    124     _updateInt  = old._updateInt;
    125     _dClk       = old._dClk;
    126     _dotDClk    = old._dotDClk;
    127     _dotDotDClk = old._dotDotDClk;
    128   }
    129109  static void writeEpoch(std::ostream* out, const QList<t_clkCorr>& corrList);
    130110  static void readEpoch(const std::string& epoLine, std::istream& in, QList<t_clkCorr>& corrList);
     
    166146    _updateInt = 0;
    167147  }
    168   t_satCodeBias(const t_satCodeBias& old) { // copy constructor (deep copy)
    169     _staID      = old._staID;
    170     _prn        = old._prn;
    171     _time       = old._time;
    172     _updateInt  = old._updateInt;
    173     for (unsigned ii = 0; ii < old._bias.size(); ii++) {
    174       _bias.push_back(old._bias[ii]);
    175     }
    176   }
    177148  static void writeEpoch(std::ostream* out, const QList<t_satCodeBias>& biasList);
    178149  static void readEpoch(const std::string& epoLine, std::istream& in, QList<t_satCodeBias>& biasList);
     
    207178    _yaw        = 0.0;
    208179    _yawRate    = 0.0;
    209   }
    210   t_satPhaseBias(const t_satPhaseBias& old) { // copy constructor (deep copy)
    211     _staID      = old._staID;
    212     _prn        = old._prn;
    213     _time       = old._time;
    214     _updateInt  = old._updateInt;
    215     _dispBiasConstistInd = old._dispBiasConstistInd;
    216     _MWConsistInd        = old._MWConsistInd;
    217     _yaw                 = old._yaw;
    218     _yawRate             = old._yawRate;
    219     for (unsigned ii = 0; ii < old._bias.size(); ii++) {
    220       _bias.push_back(old._bias[ii]);
    221     }
    222180  }
    223181  static void writeEpoch(std::ostream* out, const QList<t_satPhaseBias>& biasList);
     
    249207    _updateInt = 0;
    250208  }
    251   t_vTec(const t_vTec& old) { // copy constructor (deep copy)
    252     _staID      = old._staID;
    253     _time       = old._time;
    254     _updateInt  = old._updateInt;
    255     for (unsigned ii = 0; ii < old._layers.size(); ii++) {
    256       _layers.push_back(old._layers[ii]);
    257     }
    258   }
    259209  static void write(std::ostream* out, const t_vTec& vTec);
    260210  static void read(const std::string& epoLine, std::istream& in, t_vTec& vTec);
Note: See TracChangeset for help on using the changeset viewer.