source: ntrip/trunk/BNC/src/PPP/pppClient.cpp@ 10809

Last change on this file since 10809 was 10805, checked in by stuerze, 5 weeks ago

minor changes regarding ppp output

  • Property svn:keywords set to Author Date Id Rev URL;svn:eol-style=native
  • Property svn:mime-type set to text/plain
File size: 18.0 KB
RevLine 
[7237]1/* -------------------------------------------------------------------------
2 * BKG NTRIP Client
3 * -------------------------------------------------------------------------
4 *
5 * Class: t_pppClient
6 *
7 * Purpose: PPP Client processing starts here
8 *
9 * Author: L. Mervart
10 *
11 * Created: 29-Jul-2014
12 *
[7271]13 * Changes:
[7237]14 *
15 * -----------------------------------------------------------------------*/
16
17#include <QThreadStorage>
18
19#include <iostream>
20#include <iomanip>
[8451]21#include <cmath>
[10034]22#include <stdlib.h>
[7237]23#include <string.h>
24#include <stdexcept>
25
26#include "pppClient.h"
27#include "pppEphPool.h"
28#include "pppObsPool.h"
29#include "bncconst.h"
30#include "bncutils.h"
31#include "pppStation.h"
32#include "bncantex.h"
33#include "pppFilter.h"
34
35using namespace BNC_PPP;
36using namespace std;
37
38// Global variable holding thread-specific pointers
39//////////////////////////////////////////////////////////////////////////////
40QThreadStorage<t_pppClient*> CLIENTS;
41
42// Static function returning thread-specific pointer
43//////////////////////////////////////////////////////////////////////////////
44t_pppClient* t_pppClient::instance() {
45 return CLIENTS.localData();
46}
47
48// Constructor
49//////////////////////////////////////////////////////////////////////////////
50t_pppClient::t_pppClient(const t_pppOptions* opt) {
[10259]51 _running = true;
[7237]52 _output = 0;
53 _opt = new t_pppOptions(*opt);
54 _log = new ostringstream();
55 _ephPool = new t_pppEphPool();
56 _obsPool = new t_pppObsPool();
57 _staRover = new t_pppStation();
[10034]58 _filter = new t_pppFilter();
[7237]59 _tides = new t_tides();
[8905]60 _antex = 0;
[7237]61 if (!_opt->_antexFileName.empty()) {
62 _antex = new bncAntex(_opt->_antexFileName.c_str());
63 }
[8905]64 if (!_opt->_blqFileName.empty()) {
65 if (_tides->readBlqFile(_opt->_blqFileName.c_str()) == success) {
66 //_tides->printAllBlqSets();
67 }
[7237]68 }
69 CLIENTS.setLocalData(this); // CLIENTS takes ownership over "this"
70}
71
72// Destructor
73//////////////////////////////////////////////////////////////////////////////
74t_pppClient::~t_pppClient() {
[10259]75 _running = false;
[7237]76 delete _log;
77 delete _opt;
78 delete _ephPool;
79 delete _obsPool;
80 delete _staRover;
[7866]81 if (_antex) {
82 delete _antex;
83 }
[10034]84 delete _filter;
[7237]85 delete _tides;
86 clearObs();
87}
88
[7271]89//
[7237]90//////////////////////////////////////////////////////////////////////////////
91void t_pppClient::putEphemeris(const t_eph* eph) {
92 const t_ephGPS* ephGPS = dynamic_cast<const t_ephGPS*>(eph);
93 const t_ephGlo* ephGlo = dynamic_cast<const t_ephGlo*>(eph);
94 const t_ephGal* ephGal = dynamic_cast<const t_ephGal*>(eph);
[7271]95 const t_ephBDS* ephBDS = dynamic_cast<const t_ephBDS*>(eph);
[7237]96 if (ephGPS) {
97 _ephPool->putEphemeris(new t_ephGPS(*ephGPS));
98 }
99 else if (ephGlo) {
100 _ephPool->putEphemeris(new t_ephGlo(*ephGlo));
101 }
102 else if (ephGal) {
103 _ephPool->putEphemeris(new t_ephGal(*ephGal));
104 }
[7271]105 else if (ephBDS) {
106 _ephPool->putEphemeris(new t_ephBDS(*ephBDS));
107 }
[7237]108}
109
110//
111//////////////////////////////////////////////////////////////////////////////
112void t_pppClient::putTec(const t_vTec* vTec) {
[7248]113 _obsPool->putTec(new t_vTec(*vTec));
[7237]114}
115
[7271]116//
[7237]117//////////////////////////////////////////////////////////////////////////////
118void t_pppClient::putOrbCorrections(const vector<t_orbCorr*>& corr) {
[10791]119 if (OPT->_logMode == t_pppOptions::normal && corr.size() > 0) {
120 LOG << "orbCorrections " << string(corr[0]->_time) << ' ' << corr.size() << endl;
121 }
[7237]122 for (unsigned ii = 0; ii < corr.size(); ii++) {
123 _ephPool->putOrbCorrection(new t_orbCorr(*corr[ii]));
124 }
125}
126
[7271]127//
[7237]128//////////////////////////////////////////////////////////////////////////////
129void t_pppClient::putClkCorrections(const vector<t_clkCorr*>& corr) {
[10791]130 if (OPT->_logMode == t_pppOptions::normal && corr.size() > 0) {
131 LOG << "clkCorrections " << string(corr[0]->_time) << ' ' << corr.size() << endl;
132 }
[7237]133 for (unsigned ii = 0; ii < corr.size(); ii++) {
134 _ephPool->putClkCorrection(new t_clkCorr(*corr[ii]));
135 }
136}
137
[7271]138//
[7237]139//////////////////////////////////////////////////////////////////////////////
140void t_pppClient::putCodeBiases(const vector<t_satCodeBias*>& biases) {
[10791]141 if (OPT->_logMode == t_pppOptions::normal && biases.size() > 0) {
142 LOG << "codeBiases " << string(biases[0]->_time) << ' ' << biases.size() << endl;
143 }
144 set<char> systems;
[7237]145 for (unsigned ii = 0; ii < biases.size(); ii++) {
[10791]146 t_satCodeBias* newBias = new t_satCodeBias(*biases[ii]);
147 char sys = newBias->_prn.system();
148 if (systems.find(sys) == systems.end()) {
149 _obsPool->clearCodeBiases(sys);
150 systems.insert(sys);
151 }
152 _obsPool->putCodeBias(newBias);
[7237]153 }
154}
155
156//
157//////////////////////////////////////////////////////////////////////////////
[7288]158void t_pppClient::putPhaseBiases(const vector<t_satPhaseBias*>& biases) {
[10791]159 if (OPT->_logMode == t_pppOptions::normal && biases.size() > 0) {
160 LOG << "phaseBiases " << string(biases[0]->_time) << ' ' << biases.size() << endl;
161 }
162 set<char> systems;
[7288]163 for (unsigned ii = 0; ii < biases.size(); ii++) {
[10791]164 t_satPhaseBias* newBias = new t_satPhaseBias(*biases[ii]);
165 char sys = newBias->_prn.system();
166 if (systems.find(sys) == systems.end()) {
167 _obsPool->clearPhaseBiases(sys);
168 systems.insert(sys);
169 }
170 _obsPool->putPhaseBias(newBias);
[7288]171 }
172}
173
174//
175//////////////////////////////////////////////////////////////////////////////
[7237]176t_irc t_pppClient::prepareObs(const vector<t_satObs*>& satObs,
177 vector<t_pppSatObs*>& obsVector, bncTime& epoTime) {
[8905]178
[7271]179 // Default
[7237]180 // -------
181 epoTime.reset();
[10038]182 clearObs();
[7237]183
184 // Create vector of valid observations
185 // -----------------------------------
186 for (unsigned ii = 0; ii < satObs.size(); ii++) {
[9567]187 char sys = satObs[ii]->_prn.system();
188 if (_opt->useSystem(sys)) {
[7237]189 t_pppSatObs* pppSatObs = new t_pppSatObs(*satObs[ii]);
190 if (pppSatObs->isValid()) {
191 obsVector.push_back(pppSatObs);
192 }
193 else {
194 delete pppSatObs;
195 }
196 }
197 }
198
199 // Check whether data are synchronized, compute epoTime
200 // ----------------------------------------------------
201 const double MAXSYNC = 0.05; // synchronization limit
202 double meanDt = 0.0;
203 for (unsigned ii = 0; ii < obsVector.size(); ii++) {
204 const t_pppSatObs* satObs = obsVector.at(ii);
205 if (epoTime.undef()) {
206 epoTime = satObs->time();
207 }
208 else {
209 double dt = satObs->time() - epoTime;
210 if (fabs(dt) > MAXSYNC) {
211 LOG << "t_pppClient::prepareObs asynchronous observations" << endl;
212 return failure;
213 }
214 meanDt += dt;
215 }
216 }
217
218 if (obsVector.size() > 0) {
219 epoTime += meanDt / obsVector.size();
220 }
221
222 return success;
223}
224
[8905]225//
226//////////////////////////////////////////////////////////////////////////////
227bool t_pppClient::preparePseudoObs(std::vector<t_pppSatObs*>& obsVector) {
228
229 bool pseudoObsIono = false;
230
[8912]231 if (_opt->_pseudoObsIono) {
[8905]232 vector<t_pppSatObs*>::iterator it = obsVector.begin();
233 while (it != obsVector.end()) {
234 t_pppSatObs* satObs = *it;
[10034]235 pseudoObsIono = satObs->setPseudoObsIono(t_frequency::G1);
[8905]236 it++;
237 }
238 }
239
[10791]240 if (OPT->_logMode == t_pppOptions::all) {
241 vector<t_pppSatObs*>::iterator it = obsVector.begin();
242 while (it != obsVector.end()) {
243 t_pppSatObs* satObs = *it;
244 satObs->printObsMinusComputed();
245 it++;
[9560]246 }
247 }
[10791]248 return pseudoObsIono;
[9560]249}
250
[7237]251// Compute the Bancroft position, check for blunders
252//////////////////////////////////////////////////////////////////////////////
[7271]253t_irc t_pppClient::cmpBancroft(const bncTime& epoTime,
[7237]254 vector<t_pppSatObs*>& obsVector,
255 ColumnVector& xyzc, bool print) {
[10791]256
[10256]257 int numBancroft = obsVector.size();
[7237]258
[10259]259 while (_running) {
[10256]260 Matrix BB(numBancroft, 4);
[7237]261 int iObs = -1;
262 for (unsigned ii = 0; ii < obsVector.size(); ii++) {
263 const t_pppSatObs* satObs = obsVector.at(ii);
[10791]264 t_lc LC = satObs->rangeLC();
265 if ( satObs->isValid(LC) &&
[10356]266 (!satObs->modelSet() || satObs->eleSat() >= _opt->_minEle) ) {
267 ++iObs;
268 BB[iObs][0] = satObs->xc()[0];
269 BB[iObs][1] = satObs->xc()[1];
270 BB[iObs][2] = satObs->xc()[2];
[10791]271 BB[iObs][3] = satObs->obsValue(LC) - satObs->cmpValueForBanc(LC);
[10356]272 }
[7237]273 }
[8912]274 if (iObs + 1 < _opt->_minObs) {
[9943]275 LOG << "t_pppClient::cmpBancroft not enough observations: " << iObs + 1 << endl;
[7237]276 return failure;
277 }
278 BB = BB.Rows(1,iObs+1);
[9600]279 if (bancroft(BB, xyzc) != success) {
280 return failure;
281 }
[7237]282
283 xyzc[3] /= t_CST::c;
284
285 // Check Blunders
286 // --------------
[10623]287 const double BLUNDER = 1500.0;
[7237]288 double maxRes = 0.0;
289 unsigned maxResIndex = 0;
290 for (unsigned ii = 0; ii < obsVector.size(); ii++) {
291 const t_pppSatObs* satObs = obsVector.at(ii);
[10791]292 t_lc LC = satObs->rangeLC();
293 if (satObs->isValid(LC) &&
[10373]294 (!satObs->modelSet() || satObs->eleSat() >= _opt->_minEle) ) {
[7237]295 ColumnVector rr = satObs->xc().Rows(1,3) - xyzc.Rows(1,3);
[10791]296 double res = rr.NormFrobenius() - satObs->obsValue(LC)
[8453]297 - (satObs->xc()[3] - xyzc[3]) * t_CST::c;
[9600]298 if (fabs(res) > maxRes) {
299 maxRes = fabs(res);
[7237]300 maxResIndex = ii;
301 }
302 }
303 }
[9600]304 if (maxRes < BLUNDER) {
[10034]305 if (print) {
[7237]306 LOG.setf(ios::fixed);
[9783]307 LOG << "\nPPP of Epoch ";
308 if (!_epoTimeRover.undef()) LOG << string(_epoTimeRover);
[10805]309 LOG << " using " << _opt->_corrMount;
[9783]310 LOG << "\n---------------------------------------------------------------\n";
[10384]311 LOG << string(epoTime) << " BANCROFT: "
[7237]312 << setw(14) << setprecision(3) << xyzc[0] << ' '
313 << setw(14) << setprecision(3) << xyzc[1] << ' '
314 << setw(14) << setprecision(3) << xyzc[2] << ' '
315 << setw(14) << setprecision(3) << xyzc[3] * t_CST::c << endl << endl;
316 }
317 break;
318 }
319 else {
320 t_pppSatObs* satObs = obsVector.at(maxResIndex);
[10165]321 LOG << "t_pppClient::cmpBancroft Outlier " << satObs->prn().toString()
[7237]322 << " " << maxRes << endl;
323 delete satObs;
324 obsVector.erase(obsVector.begin() + maxResIndex);
325 }
326 }
327
328 return success;
329}
330
[7271]331//
[7237]332//////////////////////////////////////////////////////////////////////////////
333void t_pppClient::initOutput(t_output* output) {
334 _output = output;
335 _output->_numSat = 0;
[7927]336 _output->_hDop = 0.0;
[7237]337 _output->_error = false;
338}
339
[7271]340//
[7237]341//////////////////////////////////////////////////////////////////////////////
342void t_pppClient::clearObs() {
343 for (unsigned ii = 0; ii < _obsRover.size(); ii++) {
344 delete _obsRover.at(ii);
345 }
346 _obsRover.clear();
347}
348
[7271]349//
[7237]350//////////////////////////////////////////////////////////////////////////////
[10791]351void t_pppClient::finish(t_irc irc, int /*ind*/) {
[9783]352#ifdef BNC_DEBUG_PPP
[9585]353 LOG << "t_pppClient::finish(" << ind << "): " << irc << endl;
[9783]354#endif
[9585]355
[7237]356 clearObs();
357
358 _output->_epoTime = _epoTimeRover;
359
360 if (irc == success) {
361 _output->_xyzRover[0] = _staRover->xyzApr()[0] + _filter->x()[0];
362 _output->_xyzRover[1] = _staRover->xyzApr()[1] + _filter->x()[1];
363 _output->_xyzRover[2] = _staRover->xyzApr()[2] + _filter->x()[2];
364
365 xyz2neu(_staRover->ellApr().data(), _filter->x().data(), _output->_neu);
366
367 copy(&_filter->Q().data()[0], &_filter->Q().data()[6], _output->_covMatrix);
368
369 _output->_trp0 = t_tropo::delay_saast(_staRover->xyzApr(), M_PI/2.0);
370 _output->_trp = _filter->trp();
371 _output->_trpStdev = _filter->trpStdev();
372
[10805]373 _output->_fixRatio = _filter->fixRatio();
374
[9386]375 _output->_numSat = _filter->numSat();
376 _output->_hDop = _filter->HDOP();
[7237]377 _output->_error = false;
378 }
379 else {
380 _output->_error = true;
381 }
[10034]382
[7237]383 _output->_log = _log->str();
384 delete _log; _log = new ostringstream();
[9545]385
386 return;
[7237]387}
388
[7271]389//
[7237]390//////////////////////////////////////////////////////////////////////////////
391t_irc t_pppClient::cmpModel(t_pppStation* station, const ColumnVector& xyzc,
392 vector<t_pppSatObs*>& obsVector) {
393 bncTime time;
394 time = _epoTimeRover;
[8912]395 station->setName(_opt->_roverName);
396 station->setAntName(_opt->_antNameRover);
[8905]397 station->setEpochTime(time);
[10034]398
[8912]399 if (_opt->xyzAprRoverSet()) {
400 station->setXyzApr(_opt->_xyzAprRover);
[7237]401 }
402 else {
403 station->setXyzApr(xyzc.Rows(1,3));
404 }
[8912]405 station->setNeuEcc(_opt->_neuEccRover);
[7237]406
407 // Receiver Clock
408 // --------------
409 station->setDClk(xyzc[3]);
410
411 // Tides
412 // -----
[8905]413 station->setTideDsplEarth(_tides->earth(time, station->xyzApr()));
414 station->setTideDsplOcean(_tides->ocean(time, station->xyzApr(), station->name()));
[7271]415
[7237]416 // Observation model
417 // -----------------
418 vector<t_pppSatObs*>::iterator it = obsVector.begin();
419 while (it != obsVector.end()) {
420 t_pppSatObs* satObs = *it;
[7254]421 t_irc modelSetup;
[7237]422 if (satObs->isValid()) {
[7254]423 modelSetup = satObs->cmpModel(station);
[7237]424 }
[7254]425 if (satObs->isValid() &&
[8912]426 satObs->eleSat() >= _opt->_minEle &&
[7254]427 modelSetup == success) {
[7237]428 ++it;
429 }
430 else {
431 delete satObs;
432 it = obsVector.erase(it);
433 }
434 }
435
436 return success;
437}
438
[7271]439//
[7237]440//////////////////////////////////////////////////////////////////////////////
441void t_pppClient::processEpoch(const vector<t_satObs*>& satObs, t_output* output) {
442
443 try {
444 initOutput(output);
[10034]445
446 // Prepare Observations of the Rover
447 // ---------------------------------
448 if (prepareObs(satObs, _obsRover, _epoTimeRover) != success) {
449 return finish(failure, 1);
[10031]450 }
[9419]451
[10034]452 for (int iter = 1; iter <= 2; iter++) {
453 ColumnVector xyzc(4); xyzc = 0.0;
454 bool print = (iter == 2);
455 if (cmpBancroft(_epoTimeRover, _obsRover, xyzc, print) != success) {
456 return finish(failure, 2);
[10031]457 }
[10034]458 if (cmpModel(_staRover, xyzc, _obsRover) != success) {
459 return finish(failure, 3);
[8956]460 }
[10034]461 }
[8905]462
[10791]463 // Use observations only if satellite code biases are available
464 // ------------------------------------------------------------
465 if (_opt->ambRes()) {
466 useObsWithBiasesOnly(_obsRover);
467 }
468
[10034]469 if (int(_obsRover.size()) < _opt->_minObs) {
470 LOG << "t_pppClient::processEpoch not enough observations" << endl;
471 return finish(failure, 4);
472 }
[10038]473
[10034]474 // Prepare Pseudo Observations of the Rover
475 // ----------------------------------------
476 _pseudoObsIono = preparePseudoObs(_obsRover);
[10018]477
[10034]478 // Store last epoch of data
479 // ------------------------
480 _obsPool->putEpoch(_epoTimeRover, _obsRover, _pseudoObsIono);
[7237]481
[10034]482 // Process Epoch in Filter
483 // -----------------------
484 if (_filter->processEpoch(_obsPool) != success) {
[10220]485 LOG << "t_pppFilter::processEpoch() != success" << endl;
[10034]486 return finish(failure, 5);
487 }
[7237]488 }
489 catch (Exception& exc) {
490 LOG << exc.what() << endl;
[10034]491 return finish(failure, 6);
[7237]492 }
493 catch (t_except msg) {
494 LOG << msg.what() << endl;
[10034]495 return finish(failure, 7);
[7237]496 }
497 catch (const char* msg) {
498 LOG << msg << endl;
[10034]499 return finish(failure, 8);
[7237]500 }
501 catch (...) {
502 LOG << "unknown exception" << endl;
[10034]503 return finish(failure, 9);
[7237]504 }
[10034]505 return finish(success, 0);
[7237]506}
507
[7271]508//
[7237]509////////////////////////////////////////////////////////////////////////////
510double lorentz(const ColumnVector& aa, const ColumnVector& bb) {
511 return aa[0]*bb[0] + aa[1]*bb[1] + aa[2]*bb[2] - aa[3]*bb[3];
512}
513
[7271]514//
[7237]515////////////////////////////////////////////////////////////////////////////
[9600]516t_irc t_pppClient::bancroft(const Matrix& BBpass, ColumnVector& pos) {
[7237]517
518 if (pos.Nrows() != 4) {
519 pos.ReSize(4);
520 }
521 pos = 0.0;
522
523 for (int iter = 1; iter <= 2; iter++) {
524 Matrix BB = BBpass;
525 int mm = BB.Nrows();
526 for (int ii = 1; ii <= mm; ii++) {
527 double xx = BB(ii,1);
528 double yy = BB(ii,2);
529 double traveltime = 0.072;
530 if (iter > 1) {
531 double zz = BB(ii,3);
[7271]532 double rho = sqrt( (xx-pos(1)) * (xx-pos(1)) +
533 (yy-pos(2)) * (yy-pos(2)) +
[7237]534 (zz-pos(3)) * (zz-pos(3)) );
535 traveltime = rho / t_CST::c;
536 }
537 double angle = traveltime * t_CST::omega;
538 double cosa = cos(angle);
539 double sina = sin(angle);
540 BB(ii,1) = cosa * xx + sina * yy;
541 BB(ii,2) = -sina * xx + cosa * yy;
542 }
[7271]543
[7237]544 Matrix BBB;
545 if (mm > 4) {
546 SymmetricMatrix hlp; hlp << BB.t() * BB;
547 BBB = hlp.i() * BB.t();
548 }
549 else {
550 BBB = BB.i();
551 }
552 ColumnVector ee(mm); ee = 1.0;
553 ColumnVector alpha(mm); alpha = 0.0;
554 for (int ii = 1; ii <= mm; ii++) {
[7271]555 alpha(ii) = lorentz(BB.Row(ii).t(),BB.Row(ii).t())/2.0;
[7237]556 }
557 ColumnVector BBBe = BBB * ee;
558 ColumnVector BBBalpha = BBB * alpha;
559 double aa = lorentz(BBBe, BBBe);
560 double bb = lorentz(BBBe, BBBalpha)-1;
561 double cc = lorentz(BBBalpha, BBBalpha);
562 double root = sqrt(bb*bb-aa*cc);
563
[7271]564 Matrix hlpPos(4,2);
[7237]565 hlpPos.Column(1) = (-bb-root)/aa * BBBe + BBBalpha;
566 hlpPos.Column(2) = (-bb+root)/aa * BBBe + BBBalpha;
567
568 ColumnVector omc(2);
569 for (int pp = 1; pp <= 2; pp++) {
570 hlpPos(4,pp) = -hlpPos(4,pp);
[7271]571 omc(pp) = BB(1,4) -
[7237]572 sqrt( (BB(1,1)-hlpPos(1,pp)) * (BB(1,1)-hlpPos(1,pp)) +
573 (BB(1,2)-hlpPos(2,pp)) * (BB(1,2)-hlpPos(2,pp)) +
[7271]574 (BB(1,3)-hlpPos(3,pp)) * (BB(1,3)-hlpPos(3,pp)) ) -
[7237]575 hlpPos(4,pp);
576 }
577 if ( fabs(omc(1)) > fabs(omc(2)) ) {
578 pos = hlpPos.Column(2);
579 }
580 else {
581 pos = hlpPos.Column(1);
582 }
583 }
[9600]584 if (pos.size() != 4 ||
585 std::isnan(pos(1)) ||
586 std::isnan(pos(2)) ||
587 std::isnan(pos(3)) ||
588 std::isnan(pos(4))) {
589 return failure;
590 }
591
592 return success;
[7237]593}
594
[7972]595//
596//////////////////////////////////////////////////////////////////////////////
[10256]597void t_pppClient::reset() {
[9490]598
[10765]599 LOG << "pppClient: reset" << endl;
[7972]600 // to delete old orbit and clock corrections
601 delete _ephPool;
602 _ephPool = new t_pppEphPool();
603
[10765]604 // to delete old biases
[7972]605 delete _obsPool;
606 _obsPool = new t_pppObsPool();
[8905]607
608 // to delete all parameters
609 delete _filter;
[10034]610 _filter = new t_pppFilter();
[8905]611
[7996]612}
[10791]613
614//
615//////////////////////////////////////////////////////////////////////////////
616void t_pppClient::useObsWithBiasesOnly(vector<t_pppSatObs*>& obsVector) const {
617 vector<t_pppSatObs*>::iterator it = obsVector.begin();
618 while (it != obsVector.end()) {
619 t_pppSatObs* pppSatObs = *it;
620 if (pppSatObs->hasBiases()) {
621 ++it;
622 }
623 else {
624 it = obsVector.erase(it);
625 delete pppSatObs;
626 }
627 }
628}
Note: See TracBrowser for help on using the repository browser.