source: ntrip/trunk/BNC/src/PPP/options.h@ 5752

Last change on this file since 5752 was 5752, checked in by mervart, 10 years ago
File size: 1.3 KB
Line 
1#ifndef OPTIONS_H
2#define OPTIONS_H
3
4#include <string>
5#include <vector>
6#include <newmat.h>
7#include "ppp.h"
8
9namespace BNC {
10
11class t_options {
12 public:
13 class t_optBias {
14 public:
15 t_optBias(char system, t_lc::type tLC) : _system(system), _tLC(tLC) {}
16 char _system;
17 t_lc::type _tLC;
18 };
19
20 t_options();
21 ~t_options();
22 bool dualFreqRequired();
23 bool biasRequired();
24 bool useGlonass();
25 bool xyzAprRoverSet();
26 bool estTropo();
27 std::vector<t_lc::type> LCs();
28 double maxRes(t_lc::type tLC);
29
30 bool _realTime;
31 std::string _roverName;
32 std::string _crdFile;
33 std::string _antexFile;
34 std::string _corrMount;
35 std::string _rinexObs;
36 std::string _rinexNav;
37 std::string _corrFile;
38
39 double _sigCrd[3];
40 double _noiseCrd[3];
41 double _sigTropo;
42 double _noiseTropo;
43 double _sigmaC1;
44 double _sigmaL1;
45 double _corrWaitTime;
46 std::vector<t_lc::type> _lcGPS;
47 std::vector<t_lc::type> _lcGLONASS;
48 std::vector<t_lc::type> _lcGalileo;
49 std::vector<t_optBias> _estBias;
50
51 ColumnVector _xyzAprRover;
52 ColumnVector _ellAprRover;
53 ColumnVector _neuEccRover;
54 std::string _antNameRover;
55 int _minObs;
56 double _minEle;
57 double _maxResC1;
58 double _maxResL1;
59 bool _eleWgtCode;
60 bool _eleWgtPhase;
61};
62
63}
64
65#endif
Note: See TracBrowser for help on using the repository browser.