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
RevLine 
[5708]1#ifndef OPTIONS_H
2#define OPTIONS_H
3
4#include <string>
5#include <vector>
6#include <newmat.h>
[5735]7#include "ppp.h"
[5708]8
9namespace BNC {
10
11class t_options {
12 public:
13 t_options();
[5736]14 ~t_options();
[5742]15 bool dualFreqRequired();
16 bool useGlonass();
17 bool xyzAprRoverSet();
[5748]18 std::vector<t_lc::type> LCs();
19 double maxRes(t_lc::type tLC);
[5742]20
[5712]21 bool _realTime;
22 std::string _roverName;
[5713]23 std::string _crdFile;
24 std::string _antexFile;
[5712]25 std::string _corrMount;
26 std::string _rinexObs;
27 std::string _rinexNav;
28 std::string _corrFile;
[5708]29
[5713]30 double _sigCrd[3];
31 double _noiseCrd[3];
32 double _sigTropo;
33 double _noiseTropo;
34 double _sigmaC1;
35 double _sigmaL1;
36 double _corrWaitTime;
[5715]37 std::vector<t_lc::type> _lcGPS;
38 std::vector<t_lc::type> _lcGLONASS;
39 std::vector<t_lc::type> _lcGalileo;
[5713]40
[5708]41 ColumnVector _xyzAprRover;
42 ColumnVector _ellAprRover;
43 ColumnVector _neuEccRover;
44 std::string _antNameRover;
[5742]45 int _minObs;
[5708]46 double _minEle;
[5713]47 double _maxResC1;
48 double _maxResL1;
[5708]49};
50
51}
52
53#endif
Note: See TracBrowser for help on using the repository browser.