Changeset 10092 in ntrip for trunk/BNC/src/orbComp/sp3Comp.h


Ignore:
Timestamp:
Jun 16, 2023, 6:54:01 AM (16 months ago)
Author:
stuerze
Message:

units are changed in sp3 comparison summary

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/orbComp/sp3Comp.h

    r6431 r10092  
    3838class t_sp3Comp : public QThread {
    3939Q_OBJECT
    40  
     40
    4141 public:
    4242  t_sp3Comp(QObject* parent);
     
    4747 signals:
    4848  void finished();
    49    
     49
    5050 public slots:
    5151
    5252 public:
    5353  virtual void run();
    54  
     54
    5555 private:
    5656  class t_epoch {
     
    6060    std::map<t_prn, ColumnVector> _xyz;
    6161    std::map<t_prn, double>       _dc;
     62    std::map<t_prn, double>       _dcRed;
    6263  };
    6364
     
    6566   public:
    6667    t_stat() {
    67       _rao.ReSize(3);
    68       _rao    = 0.0;
    69       _dc     = 0.0;
    70       _dcRed  = 0.0;
    71       _offset = 0.0;
    72       _nr     = 0;
    73       _nc     = 0;
     68      _rao.ReSize(3);  _rao    = 0.0;
     69      _rao3DRMS   = 0.0;
     70      _dcRMS      = 0.0;
     71      _dcRedRMS   = 0.0;
     72      _dcRedMean  = 0.0;
     73      _dcRedSig   = 0.0;
     74      _offset     = 0.0;
     75      _nr         = 0;
     76      _nc         = 0;
    7477    }
    7578    ColumnVector _rao;
    76     double       _dc;
    77     double       _dcRed;
     79    double       _rao3DRMS;
     80    double       _dcRMS;
     81    double       _dcRedRMS;
     82    double       _dcRedMean;
     83    double       _dcRedSig;
    7884    double       _offset;
    7985    int          _nr;
Note: See TracChangeset for help on using the changeset viewer.