Changeset 4689 in ntrip


Ignore:
Timestamp:
Sep 9, 2012, 4:51:22 PM (12 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src/rinex
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/rinex/reqcanalyze.cpp

    r4688 r4689  
    292292  emit dspAvailPlot(obsFile->fileName(), title);
    293293
    294   if (_log) {
    295     _log->flush();
    296   }
     294  printReport();
    297295}
    298296
     
    692690  return sqrt(QQ.trace());
    693691}
     692
     693// Finish the report
     694////////////////////////////////////////////////////////////////////////////
     695void 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  
    160160                      const ColumnVector& xyzSta);
    161161  double cmpDOP(const ColumnVector& xyzSta) const;
     162  void printReport();
    162163
    163164  QString                    _logFileName;
Note: See TracChangeset for help on using the changeset viewer.