Changeset 2058 in ntrip for trunk/BNC/bncmodel.h


Ignore:
Timestamp:
Dec 1, 2009, 11:49:03 AM (14 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncmodel.h

    r2057 r2058  
    2727
    2828#include <QtCore>
     29#include <newmat.h>
    2930
    30 #include <newmat.h>
     31#include "bncconst.h"
     32
     33class t_epoData;
    3134
    3235class bncParam {
    3336 public:
     37  enum type {CRD_X, CRD_Y, CRD_Z, TROPO, AMB_L3};
    3438  bncParam();
    3539  ~bncParam();
     40  double x0;
     41};
    3642
     43class bncModel {
     44 public:
     45  bncModel();
     46  ~bncModel();
     47  t_irc cmpBancroft(t_epoData* epoData);
     48  const ColumnVector& xcBanc() const {return _xcBanc;}
     49 
    3750 private:
     51  Matrix       _QQ;
     52  ColumnVector _xx;
     53  ColumnVector _xcBanc;
    3854};
    3955
Note: See TracChangeset for help on using the changeset viewer.