source: ntrip/trunk/BNC/src/PPP/pppClient.h@ 10583

Last change on this file since 10583 was 10583, checked in by stuerze, 4 days ago

changed in PPP mode from common receiver clock + ISBs to system specific receiver clocks

  • Property svn:keywords set to Author Date Id Rev URL;svn:eol-style=native
  • Property svn:mime-type set to text/plain
File size: 3.0 KB
RevLine 
[7237]1#ifndef PPPCLIENT_H
2#define PPPCLIENT_H
3
4#include <sstream>
5#include <vector>
6#include "pppInclude.h"
7#include "ephemeris.h"
8#include "pppOptions.h"
9#include "pppModel.h"
10
11class bncAntex;
12
13namespace BNC_PPP {
14
15class t_pppEphPool;
16class t_pppObsPool;
17class t_pppSatObs;
18class t_pppStation;
19class t_pppFilter;
20
21class t_pppClient : public interface_pppClient {
22 public:
[7288]23 t_pppClient(const t_pppOptions* opt);
24 ~t_pppClient();
[7237]25
[7288]26 void putEphemeris(const t_eph* eph);
[7237]27 void putTec(const t_vTec* vTec);
[7288]28 void putOrbCorrections(const std::vector<t_orbCorr*>& corr);
29 void putClkCorrections(const std::vector<t_clkCorr*>& corr);
30 void putCodeBiases(const std::vector<t_satCodeBias*>& biases);
31 void putPhaseBiases(const std::vector<t_satPhaseBias*>& biases);
[7237]32 void processEpoch(const std::vector<t_satObs*>& satObs, t_output* output);
33
34 const t_pppEphPool* ephPool() const {return _ephPool;}
35 const t_pppObsPool* obsPool() const {return _obsPool;}
[8905]36 const bncAntex* antex() const {return _antex;}
[7237]37 const t_pppStation* staRover() const {return _staRover;}
38
39 std::ostringstream& log() {return *_log;}
[7248]40 const t_pppOptions* opt() const {return _opt;}
[9600]41 static t_irc bancroft(const Matrix& BBpass, ColumnVector& pos);
[7237]42
43 static t_pppClient* instance();
44
[7972]45 void reset();
46
[7237]47 private:
48 void initOutput(t_output* output);
[9545]49 void finish(t_irc irc, int ind);
[7237]50 void clearObs();
51 t_irc prepareObs(const std::vector<t_satObs*>& satObs,
52 std::vector<t_pppSatObs*>& obsVector, bncTime& epoTime);
[8905]53 bool preparePseudoObs(std::vector<t_pppSatObs*>& obsVector);
[9560]54 void useObsWithCodeBiasesOnly(std::vector<t_pppSatObs*>& obsVector);
[7237]55 t_irc cmpModel(t_pppStation* station, const ColumnVector& xyzc,
56 std::vector<t_pppSatObs*>& obsVector);
[7288]57 t_irc cmpBancroft(const bncTime& epoTime, std::vector<t_pppSatObs*>& obsVector,
[7237]58 ColumnVector& xyzc, bool print);
[10388]59 double cmpOffGps(std::vector<t_pppSatObs*>& obsVector);
[10256]60 double cmpOffGlo(std::vector<t_pppSatObs*>& obsVector);
61 double cmpOffGal(std::vector<t_pppSatObs*>& obsVector);
62 double cmpOffBds(std::vector<t_pppSatObs*>& obsVector);
[10232]63
[10256]64
[7237]65 t_output* _output;
66 t_pppEphPool* _ephPool;
67 t_pppObsPool* _obsPool;
68 bncTime _epoTimeRover;
69 t_pppStation* _staRover;
70 bncAntex* _antex;
71 t_pppFilter* _filter;
[10388]72 double _offGps;
[10256]73 double _offGlo;
74 double _offGal;
75 double _offBds;
[7237]76 std::vector<t_pppSatObs*> _obsRover;
[7288]77 std::ostringstream* _log;
78 t_pppOptions* _opt;
[7237]79 t_tides* _tides;
[8905]80 bool _pseudoObsIono;
[10256]81 QMap<char, int> _usedSystems;
[10259]82 bool _running;
[7237]83};
84
85}; // namespace BNC_PPP
86
87#define PPP_CLIENT (BNC_PPP::t_pppClient::instance())
88#define LOG (BNC_PPP::t_pppClient::instance()->log())
89#define OPT (BNC_PPP::t_pppClient::instance()->opt())
90
91#endif
Note: See TracBrowser for help on using the repository browser.