| Line | |
|---|
| 1 | #ifndef OPTIONS_H
|
|---|
| 2 | #define OPTIONS_H
|
|---|
| 3 |
|
|---|
| 4 | #include <string>
|
|---|
| 5 | #include <vector>
|
|---|
| 6 | #include <newmat.h>
|
|---|
| 7 | #include "ppp_include.h"
|
|---|
| 8 |
|
|---|
| 9 | namespace BNC {
|
|---|
| 10 |
|
|---|
| 11 | class t_options {
|
|---|
| 12 | public:
|
|---|
| 13 | t_options();
|
|---|
| 14 | ~t_options() {};
|
|---|
| 15 | bool _realTime;
|
|---|
| 16 | std::string _roverName;
|
|---|
| 17 | std::string _crdFile;
|
|---|
| 18 | std::string _antexFile;
|
|---|
| 19 | std::string _corrMount;
|
|---|
| 20 | std::string _rinexObs;
|
|---|
| 21 | std::string _rinexNav;
|
|---|
| 22 | std::string _corrFile;
|
|---|
| 23 |
|
|---|
| 24 | double _sigCrd[3];
|
|---|
| 25 | double _noiseCrd[3];
|
|---|
| 26 | double _sigTropo;
|
|---|
| 27 | double _noiseTropo;
|
|---|
| 28 | double _sigmaC1;
|
|---|
| 29 | double _sigmaL1;
|
|---|
| 30 | double _corrWaitTime;
|
|---|
| 31 |
|
|---|
| 32 | ColumnVector _xyzAprRover;
|
|---|
| 33 | ColumnVector _ellAprRover;
|
|---|
| 34 | ColumnVector _neuEccRover;
|
|---|
| 35 | std::string _antNameRover;
|
|---|
| 36 | int _minobs;
|
|---|
| 37 | bool _useGlonass;
|
|---|
| 38 | double _minEle;
|
|---|
| 39 | double _maxResC1;
|
|---|
| 40 | double _maxResL1;
|
|---|
| 41 | };
|
|---|
| 42 |
|
|---|
| 43 | }
|
|---|
| 44 |
|
|---|
| 45 | #endif
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.