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

Last change on this file since 5715 was 5715, checked in by mervart, 10 years ago
File size: 947 bytes
RevLine 
[5708]1#ifndef OPTIONS_H
2#define OPTIONS_H
3
4#include <string>
5#include <vector>
6#include <newmat.h>
[5711]7#include "ppp_include.h"
[5708]8
9namespace BNC {
10
11class t_options {
12 public:
13 t_options();
14 ~t_options() {};
[5712]15 bool _realTime;
16 std::string _roverName;
[5713]17 std::string _crdFile;
18 std::string _antexFile;
[5712]19 std::string _corrMount;
20 std::string _rinexObs;
21 std::string _rinexNav;
22 std::string _corrFile;
[5708]23
[5713]24 double _sigCrd[3];
25 double _noiseCrd[3];
26 double _sigTropo;
27 double _noiseTropo;
28 double _sigmaC1;
29 double _sigmaL1;
30 double _corrWaitTime;
[5715]31 std::vector<t_lc::type> _lcGPS;
32 std::vector<t_lc::type> _lcGLONASS;
33 std::vector<t_lc::type> _lcGalileo;
[5713]34
[5708]35 ColumnVector _xyzAprRover;
36 ColumnVector _ellAprRover;
37 ColumnVector _neuEccRover;
38 std::string _antNameRover;
39 int _minobs;
40 double _minEle;
[5713]41 double _maxResC1;
42 double _maxResL1;
[5708]43};
44
45}
46
47#endif
Note: See TracBrowser for help on using the repository browser.