| Line | |
|---|
| 1 | #ifndef SATBIAS_H
|
|---|
| 2 | #define SATBIAS_H
|
|---|
| 3 |
|
|---|
| 4 | #include <map>
|
|---|
| 5 | #include "pppInclude.h"
|
|---|
| 6 | #include "bnctime.h"
|
|---|
| 7 |
|
|---|
| 8 | namespace BNC {
|
|---|
| 9 |
|
|---|
| 10 | typedef std::string t_biasType;
|
|---|
| 11 |
|
|---|
| 12 | class t_satBias {
|
|---|
| 13 | public:
|
|---|
| 14 | t_satBias(const t_satBiases& satBiases);
|
|---|
| 15 | ~t_satBias() {}
|
|---|
| 16 | const t_prn& prn() const {return _prn;}
|
|---|
| 17 | const std::map<t_biasType, double>& biases() const {return _biases;}
|
|---|
| 18 | int nx() const {return _nx;}
|
|---|
| 19 | int jumpCount() const {return _jumpCount;}
|
|---|
| 20 | private:
|
|---|
| 21 | t_prn _prn;
|
|---|
| 22 | bncTime _time;
|
|---|
| 23 | int _nx;
|
|---|
| 24 | int _jumpCount;
|
|---|
| 25 | std::map<t_biasType, double> _biases;
|
|---|
| 26 | };
|
|---|
| 27 |
|
|---|
| 28 | }
|
|---|
| 29 |
|
|---|
| 30 | #endif
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.