source: ntrip/trunk/BNC/src/combination/bnccomb.h@ 6160

Last change on this file since 6160 was 6160, checked in by mervart, 10 years ago
File size: 3.5 KB
RevLine 
[2898]1
2#ifndef BNCCOMB_H
3#define BNCCOMB_H
4
[3035]5#include <fstream>
[2933]6#include <newmat.h>
[2906]7#include "bncephuser.h"
[6141]8#include "satObs.h"
[2898]9
[3201]10class bncRtnetDecoder;
[3181]11class bncSP3;
[3052]12class bncAntex;
[2927]13
[2906]14class bncComb : public bncEphUser {
[2898]15 Q_OBJECT
16 public:
17 bncComb();
[3297]18 virtual ~bncComb();
[2918]19 int nStreams() const {return _ACs.size();}
[2898]20
[5583]21 public slots:
22 void slotProviderIDChanged(QString mountPoint);
[6155]23 void slotNewOrbCorrections(QList<t_orbCorr> orbCorrections);
24 void slotNewClkCorrections(QList<t_clkCorr> clkCorrections);
[5583]25
[2898]26 signals:
27 void newMessage(QByteArray msg, bool showOnScreen);
[6155]28 void newClkCorrections(QList<t_clkCorr> clkCorrections);
29 void newOrbCorrections(QList<t_orbCorr> orbCorrections);
[2898]30
31 private:
[3470]32 enum e_method{singleEpoch, filter};
33
[6154]34 class cmbParam {
35 public:
36 enum parType {offACgps, offACglo, offACSat, clkSat};
37 cmbParam(parType type_, int index_, const QString& ac_, const QString& prn_);
38 ~cmbParam();
39 double partial(const QString& AC_, const QString& prn_);
40 QString toString() const;
41 parType type;
42 int index;
43 QString AC;
44 QString prn;
45 double xx;
46 double sig0;
47 double sigP;
48 bool epoSpec;
49 const t_eph* eph;
50 };
51
[2918]52 class cmbAC {
53 public:
[3433]54 cmbAC() {
55 weight = 0.0;
56 numObs = 0;
57 }
[3430]58 ~cmbAC() {}
[3434]59 QString mountPoint;
60 QString name;
61 double weight;
62 unsigned numObs;
[2918]63 };
64
[6155]65 class cmbCorr {
[3423]66 public:
[6155]67 cmbCorr() {
[6160]68 _eph = 0;
69 _iod = 0;
70 _dClkResult = 0.0;
[6155]71 }
[6159]72 ~cmbCorr() {}
[6157]73 QString _prn;
[6155]74 bncTime _time;
75 int _iod;
76 const t_eph* _eph;
[6160]77 t_orbCorr _orbCorr;
78 t_clkCorr _clkCorr;
[6157]79 QString _acName;
[6160]80 double _dClkResult;
[6155]81 ColumnVector _diffRao;
[6157]82 QString ID() {return _acName + "_" + _prn;}
[3423]83 };
84
[3434]85 class cmbEpoch {
86 public:
87 cmbEpoch() {}
88 ~cmbEpoch() {
89 QVectorIterator<cmbCorr*> it(corrs);
90 while (it.hasNext()) {
91 delete it.next();
92 }
93 }
94 QVector<cmbCorr*> corrs;
95 };
96
[6154]97 void processEpoch();
[6155]98 t_irc processEpoch_filter(QTextStream& out, QMap<QString, cmbCorr*>& resCorr,
[3475]99 ColumnVector& dx);
[6155]100 t_irc processEpoch_singleEpoch(QTextStream& out, QMap<QString, cmbCorr*>& resCorr,
[3475]101 ColumnVector& dx);
[3455]102 t_irc createAmat(Matrix& AA, ColumnVector& ll, DiagonalMatrix& PP,
[6155]103 const ColumnVector& x0, QMap<QString, cmbCorr*>& resCorr);
104 void dumpResults(const QMap<QString, cmbCorr*>& resCorr);
105 void printResults(QTextStream& out, const QMap<QString, cmbCorr*>& resCorr);
106 void switchToLastEph(const t_eph* lastEph, cmbCorr* corr);
[3497]107 t_irc checkOrbits(QTextStream& out);
[6157]108 QVector<cmbCorr*>& corrs() {return _buffer[_resTime].corrs;}
[2918]109
[6155]110 QList<cmbAC*> _ACs;
111 bncTime _resTime;
112 QVector<cmbParam*> _params;
113 QMap<bncTime, cmbEpoch> _buffer;
114 bncRtnetDecoder* _rtnetDecoder;
115 SymmetricMatrix _QQ;
116 QByteArray _log;
117 bncAntex* _antex;
118 double _MAXRES;
119 QString _masterOrbitAC;
120 unsigned _masterMissingEpochs;
121 e_method _method;
122 bool _useGlonass;
123 int _cmbSampl;
124 QMap<QString, QMap<t_prn, t_orbCorr> > _orbCorrections;
[2898]125};
126
127#endif
Note: See TracBrowser for help on using the repository browser.