Last change
on this file since 10460 was 7235, checked in by stuerze, 9 years ago |
some renaming regarding PPP
|
-
Property svn:keywords
set to
Author Date Id Rev URL;svn:eol-style=native
-
Property svn:mime-type
set to
text/plain
|
File size:
412 bytes
|
Rev | Line | |
---|
[7235] | 1 | #ifndef PPPUTILS_H
|
---|
| 2 | #define PPPUTILS_H
|
---|
| 3 |
|
---|
| 4 | #include <string>
|
---|
| 5 | #include <newmat.h>
|
---|
| 6 | #include "satObs.h"
|
---|
| 7 |
|
---|
| 8 | namespace BNC_PPP {
|
---|
| 9 |
|
---|
| 10 | class t_pppUtils {
|
---|
| 11 | public:
|
---|
| 12 | t_pppUtils();
|
---|
| 13 | ~t_pppUtils();
|
---|
| 14 | void putCodeBias(t_satCodeBias* satCodeBias);
|
---|
| 15 | const t_satCodeBias* satCodeBias(const t_prn& prn) const {
|
---|
| 16 | return _satCodeBiases[prn.toInt()];
|
---|
| 17 | }
|
---|
| 18 |
|
---|
| 19 | private:
|
---|
| 20 | t_satCodeBias* _satCodeBiases[t_prn::MAXPRN+1];
|
---|
| 21 | };
|
---|
| 22 |
|
---|
| 23 | }
|
---|
| 24 |
|
---|
| 25 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.