| Line | |
|---|
| 1 | #include <iostream>
|
|---|
| 2 | #include <iomanip>
|
|---|
| 3 | #include <sstream>
|
|---|
| 4 |
|
|---|
| 5 | #include "satObs.h"
|
|---|
| 6 |
|
|---|
| 7 | using namespace std;
|
|---|
| 8 |
|
|---|
| 9 | //
|
|---|
| 10 | ////////////////////////////////////////////////////////////////////////////
|
|---|
| 11 | void t_clkCorr::reset() {
|
|---|
| 12 | _prn.set(' ', 0);
|
|---|
| 13 | _time.reset();
|
|---|
| 14 | _iod = 0;
|
|---|
| 15 | _dClk = 0.0;
|
|---|
| 16 | _dotDClk = 0.0;
|
|---|
| 17 | _dotDotDClk = 0.0;
|
|---|
| 18 | _clkPartial = 0.0;
|
|---|
| 19 | }
|
|---|
| 20 |
|
|---|
| 21 | //
|
|---|
| 22 | ////////////////////////////////////////////////////////////////////////////
|
|---|
| 23 | void t_clkCorr::writeEpoch(std::ostream* out, const QList<t_clkCorr>& corrList) {
|
|---|
| 24 | if (!out || corrList.size() == 0) {
|
|---|
| 25 | return;
|
|---|
| 26 | }
|
|---|
| 27 | *out << "CLOCK CORRECTIONS: " << corrList.size() << endl;
|
|---|
| 28 |
|
|---|
| 29 | out->flush();
|
|---|
| 30 | }
|
|---|
| 31 |
|
|---|
| 32 | //
|
|---|
| 33 | ////////////////////////////////////////////////////////////////////////////
|
|---|
| 34 | void t_clkCorr::readEpoch(std::istream* in, QList<t_clkCorr>& corrList) {
|
|---|
| 35 | }
|
|---|
| 36 |
|
|---|
| 37 | //
|
|---|
| 38 | ////////////////////////////////////////////////////////////////////////////
|
|---|
| 39 | void t_orbCorr::reset() {
|
|---|
| 40 | _prn.set(' ', 0);
|
|---|
| 41 | _time.reset();
|
|---|
| 42 | _xr.ReSize(3); _xr = 0.0;
|
|---|
| 43 | _dotXr.ReSize(3); _dotXr = 0.0;
|
|---|
| 44 | _iod = 0;
|
|---|
| 45 | _system = 'R';
|
|---|
| 46 | }
|
|---|
| 47 |
|
|---|
| 48 | //
|
|---|
| 49 | ////////////////////////////////////////////////////////////////////////////
|
|---|
| 50 | void t_orbCorr::writeEpoch(std::ostream* out, const QList<t_orbCorr>& corrList) {
|
|---|
| 51 | if (!out || corrList.size() == 0) {
|
|---|
| 52 | return;
|
|---|
| 53 | }
|
|---|
| 54 | *out << "ORB CORRECTIONS: " << corrList.size() << endl;
|
|---|
| 55 |
|
|---|
| 56 | out->flush();
|
|---|
| 57 | }
|
|---|
| 58 |
|
|---|
| 59 | //
|
|---|
| 60 | ////////////////////////////////////////////////////////////////////////////
|
|---|
| 61 | void t_orbCorr::readEpoch(std::istream* in, QList<t_orbCorr>& corrList) {
|
|---|
| 62 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.