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