Changeset 4689 in ntrip for trunk/BNC/src/rinex
- Timestamp:
- Sep 9, 2012, 4:51:22 PM (12 years ago)
- Location:
- trunk/BNC/src/rinex
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/reqcanalyze.cpp
r4688 r4689 292 292 emit dspAvailPlot(obsFile->fileName(), title); 293 293 294 if (_log) { 295 _log->flush(); 296 } 294 printReport(); 297 295 } 298 296 … … 692 690 return sqrt(QQ.trace()); 693 691 } 692 693 // Finish the report 694 //////////////////////////////////////////////////////////////////////////// 695 void t_reqcAnalyze::printReport() { 696 697 if (!_log) { 698 return; 699 } 700 701 *_log << "Marker name: " << _obsStat._markerName << endl 702 << "Receiver: " << _obsStat._receiverType << endl 703 << "Antenna: " << _obsStat._antennaName << endl 704 << "Start time: " << _obsStat._startTime.datestr().c_str() << ' ' 705 << _obsStat._startTime.timestr().c_str() << endl; 706 707 _log->flush(); 708 } -
trunk/BNC/src/rinex/reqcanalyze.h
r4688 r4689 160 160 const ColumnVector& xyzSta); 161 161 double cmpDOP(const ColumnVector& xyzSta) const; 162 void printReport(); 162 163 163 164 QString _logFileName;
Note:
See TracChangeset
for help on using the changeset viewer.