Changeset 6309 in ntrip for trunk/BNC/src/rinex/reqcanalyze.cpp


Ignore:
Timestamp:
Nov 7, 2014, 11:54:40 AM (9 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r6308 r6309  
    737737  // Summary
    738738  // -------
    739   *_log << "QC Format Version : " << QString("%1").arg(QC_FORMAT_VERSION,3,'f',1) << endl
     739  *_log << "QC Format Version : " << QString("%1").arg(QC_FORMAT_VERSION,3,'f',1) << endl << endl
    740740        << "Observation File  : " << obsFile->fileName().toAscii().data() << endl
    741741        << "Navigation File(s): " << _navFileNames.join(", ")             << endl
     
    768768  }
    769769
    770   *_log << "Number of Systems : " << systemMap.size() << "   ";
     770  *_log << "Navigation Systems: " << systemMap.size() << "   ";
    771771  QMapIterator<QChar, QVector<const t_qcSatSum*> > itSys(systemMap);
    772772  while (itSys.hasNext()) {
     
    782782    const QVector<const t_qcSatSum*>& qcSatVec = itSys.value();
    783783    QString prefixSys = QString("  ") + sys + QString(": ");
    784     *_log << prefixSys << "Number of Satellites  : " << qcSatVec.size() << endl;
    785784    QMap<QString, QVector<const t_qcFrqSum*> > frqMap;
    786785    for (int ii = 0; ii < qcSatVec.size(); ii++) {
     
    789788      while (itFrq.hasNext()) {
    790789        itFrq.next();
    791         const QString&    frqType  = itFrq.key();
     790        QString           frqType  = itFrq.key(); if (frqType.length() < 2) frqType += ' ';
    792791        const t_qcFrqSum& qcFrqSum = itFrq.value();
    793792        frqMap[frqType].push_back(&qcFrqSum);
    794793      }
    795794    }
    796     *_log << prefixSys << "Tracking Modes        : " << frqMap.size() << "   ";
     795    *_log << endl
     796          << prefixSys << "Satellites    : " << qcSatVec.size() << endl
     797          << prefixSys << "Tracking Modes: " << frqMap.size() << "   ";
    797798    QMapIterator<QString, QVector<const t_qcFrqSum*> > itFrq(frqMap);
    798799    while (itFrq.hasNext()) {
    799800      itFrq.next();
    800       const QString& frqType = itFrq.key();
     801      QString frqType = itFrq.key(); if (frqType.length() < 2) frqType += ' ';
    801802      *_log << ' ' << frqType;
    802803    }
     
    805806    while (itFrq.hasNext()) {
    806807      itFrq.next();
    807       const QString&                   frqType  = itFrq.key();
     808      QString                          frqType  = itFrq.key(); if (frqType.length() < 2) frqType += ' ';
    808809      const QVector<const t_qcFrqSum*> qcFrqVec = itFrq.value();
    809810      QString prefixFrq = QString("  ") + frqType + QString(": ");
     
    820821        numGaps         += qcFrqSum->_numGaps        ;
    821822      }
    822       *_log << prefixSys << prefixFrq << "Observations          : " << numObs << endl
     823      *_log << endl
     824            << prefixSys << prefixFrq << "Observations          : " << numObs << endl
    823825            << prefixSys << prefixFrq << "Slips (file+found)    : " << numSlipsFlagged << " + " << numSlipsFound << endl
    824826            << prefixSys << prefixFrq << "Gaps                  : " << numGaps << endl;
     
    832834    return;
    833835  }
     836  *_log << endl;
    834837  for (int iEpo = 0; iEpo < _qcFile._qcEpo.size(); iEpo++) {
    835838    const t_qcEpo& qcEpo = _qcFile._qcEpo[iEpo];
Note: See TracChangeset for help on using the changeset viewer.