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

Last change on this file since 5748 was 5748, checked in by mervart, 10 years ago
File size: 1.1 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 t_options();
14 ~t_options();
15 bool dualFreqRequired();
16 bool useGlonass();
17 bool xyzAprRoverSet();
18 std::vector<t_lc::type> LCs();
19 double maxRes(t_lc::type tLC);
20
21 bool _realTime;
22 std::string _roverName;
23 std::string _crdFile;
24 std::string _antexFile;
25 std::string _corrMount;
26 std::string _rinexObs;
27 std::string _rinexNav;
28 std::string _corrFile;
29
30 double _sigCrd[3];
31 double _noiseCrd[3];
32 double _sigTropo;
33 double _noiseTropo;
34 double _sigmaC1;
35 double _sigmaL1;
36 double _corrWaitTime;
37 std::vector<t_lc::type> _lcGPS;
38 std::vector<t_lc::type> _lcGLONASS;
39 std::vector<t_lc::type> _lcGalileo;
40
41 ColumnVector _xyzAprRover;
42 ColumnVector _ellAprRover;
43 ColumnVector _neuEccRover;
44 std::string _antNameRover;
45 int _minObs;
46 double _minEle;
47 double _maxResC1;
48 double _maxResL1;
49};
50
51}
52
53#endif
Note: See TracBrowser for help on using the repository browser.