Changeset 2933 in ntrip for trunk/BNC/combination/bnccomb.h


Ignore:
Timestamp:
Jan 29, 2011, 3:50:06 PM (13 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r2929 r2933  
    33#define BNCCOMB_H
    44
     5#include <newmat.h>
    56#include "bncephuser.h"
    67
    78class cmbCaster;
     9
     10class cmbParam {
     11 public:
     12  enum parType {offset, clk};
     13  cmbParam(parType typeIn, int indexIn,
     14           const QString& acIn, const QString& prnIn);
     15  ~cmbParam();
     16  double partial(const QString& acIn, t_corr* corr);
     17  parType type;
     18  int     index;
     19  QString AC;
     20  QString prn;
     21  double  xx;
     22};
    823
    924class bncComb : public bncEphUser  {
     
    6378  bncTime               _processedBeforeTime;
    6479  cmbCaster*            _caster;
     80  QVector<cmbParam*>    _params;
     81  double                _sigClk0;
     82  double                _sigOff0;
     83  SymmetricMatrix       _QQ;
    6584};
    6685
Note: See TracChangeset for help on using the changeset viewer.