| Line | |
|---|
| 1 |
|
|---|
| 2 | #include "satObs.h"
|
|---|
| 3 | using namespace std;
|
|---|
| 4 |
|
|---|
| 5 | //
|
|---|
| 6 | ////////////////////////////////////////////////////////////////////////////
|
|---|
| 7 | t_clkCorr::t_clkCorr() {
|
|---|
| 8 | _iod = 0;
|
|---|
| 9 | _dClk = 0.0;
|
|---|
| 10 | _dotDClk = 0.0;
|
|---|
| 11 | _dotDotDClk = 0.0;
|
|---|
| 12 | _clkPartial = 0.0;
|
|---|
| 13 | }
|
|---|
| 14 |
|
|---|
| 15 | //
|
|---|
| 16 | ////////////////////////////////////////////////////////////////////////////
|
|---|
| 17 | t_clkCorr::t_clkCorr(const string& str) {
|
|---|
| 18 | }
|
|---|
| 19 |
|
|---|
| 20 | //
|
|---|
| 21 | ////////////////////////////////////////////////////////////////////////////
|
|---|
| 22 | string t_clkCorr::toString() const {
|
|---|
| 23 | return "CLK";
|
|---|
| 24 | }
|
|---|
| 25 |
|
|---|
| 26 | //
|
|---|
| 27 | ////////////////////////////////////////////////////////////////////////////
|
|---|
| 28 | t_orbCorr::t_orbCorr() {
|
|---|
| 29 | _xr.ReSize(3); _xr = 0.0;
|
|---|
| 30 | _dotXr.ReSize(3); _dotXr = 0.0;
|
|---|
| 31 | _iod = 0;
|
|---|
| 32 | _system = 'R';
|
|---|
| 33 | }
|
|---|
| 34 |
|
|---|
| 35 | //
|
|---|
| 36 | ////////////////////////////////////////////////////////////////////////////
|
|---|
| 37 | t_orbCorr::t_orbCorr(const string& str) {
|
|---|
| 38 | }
|
|---|
| 39 |
|
|---|
| 40 | //
|
|---|
| 41 | ////////////////////////////////////////////////////////////////////////////
|
|---|
| 42 | string t_orbCorr::toString() const {
|
|---|
| 43 | return "ORB";
|
|---|
| 44 | }
|
|---|
| 45 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.