Changeset 10481 in ntrip for trunk/BNC


Ignore:
Timestamp:
May 7, 2024, 4:01:36 PM (5 weeks ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/combination/bnccomb.cpp

    r10479 r10481  
    726726    t_eph* ephPrev = _ephUser.ephPrev(prn);
    727727    if (ephLast == 0) {
     728#ifdef BNC_DEBUG_CMB
    728729      emit newMessage("bncComb: eph not found for "  + prn.mid(0,3).toLatin1(), true);
     730#endif
    729731      delete _newCorr; _newCorr = 0;
    730732      continue;
     
    750752      }
    751753      else {
     754#ifdef BNC_DEBUG_CMB
    752755        emit newMessage("bncComb: eph not found for "  + prn.mid(0,3).toLatin1() +
    753756                        QString(" with IOD %1").arg(_newCorr->_iod).toLatin1(), true);
     757#endif
    754758        delete _newCorr; _newCorr = 0;
    755759        continue;
     
    824828    processSystem(epoTime, sys, out);
    825829    _buffer.remove(sys);
    826     //emit newMessage(_log, false);
    827830    if (_logFile) {
    828831      _logFile->write(epoTime.gpsw(),epoTime.gpssec(), QString(_log));
     
    833836void bncComb::processSystem(bncTime epoTime, char sys, QTextStream& out) {
    834837
    835   out << "\n" <<           "Combination: " << sys << "\n"
    836       << "--------------------------------" << "\n";
     838  out << "\n"
     839      << epoTime.datestr().c_str()    << " "
     840      << epoTime.timestr().c_str()    << " "
     841      << "Combination: " << sys << "\n"
     842      << "--------------------------------------" << "\n";
    837843
    838844  // Observation Statistics
     
    853859      }
    854860    }
    855     out << AC->name.toLatin1().data() << ": " << AC->numObs[sys] << "\n";
     861    out << epoTime.datestr().c_str()    << " "
     862        << epoTime.timestr().c_str()    << " "
     863        << AC->name.toLatin1().data() << ": " << AC->numObs[sys] << "\n";
    856864  }
    857865
     
    876884        cmbAC* AC = icAC.next();
    877885        if (AC->numObs[sys] > 0) {
    878           out << "Switching Master AC "
     886          out <<  epoTime.datestr().c_str()   << " "
     887              << epoTime.timestr().c_str()    << " "
     888              << "Switching Master AC "
    879889              << _masterOrbitAC[sys].toLatin1().data() << " --> "
    880               << AC->name.toLatin1().data()   << " "
    881               << epoTime.datestr().c_str()    << " "
    882               << epoTime.timestr().c_str()    << "\n";
     890              << AC->name.toLatin1().data()   << "\n";
    883891          _masterOrbitAC[sys] = AC->name;
    884892          _masterIsAPC[sys]   = AC->isAPC;
Note: See TracChangeset for help on using the changeset viewer.