Changeset 3423 in ntrip


Ignore:
Timestamp:
Sep 11, 2011, 6:22:04 PM (13 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/combination
Files:
2 edited

Legend:

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

    r3372 r3423  
    462462    int iObs = 0;
    463463    QListIterator<cmbEpoch*> itEpo(epochs);
    464     QVector<QString> llInfo(ll.Nrows());
     464    QVector<t_llInfo> llInfo(ll.Nrows());
    465465    while (itEpo.hasNext()) {
    466466      cmbEpoch* epo = itEpo.next();
     
    482482
    483483        ll(iObs) = corr->dClk * t_CST::c - DotProduct(AA.Row(iObs), x0);
    484         llInfo[iObs-1] = QString("%1  %2").arg(epo->acName).arg(corr->prn);
     484        llInfo[iObs-1].AC  = epo->acName;
     485        llInfo[iObs-1].prn = corr->prn;
    485486      }
    486487    }
     
    527528      out << resTime.datestr().c_str() << " " << resTime.timestr().c_str()
    528529          << " Maximum Residuum " << maxRes << ' '
    529           << llInfo[maxResIndex-1];
     530          << llInfo[maxResIndex-1].AC << ' ' << llInfo[maxResIndex-1].prn;
    530531
    531532      if (maxRes > _MAXRES) {
  • trunk/BNC/combination/bnccomb.h

    r3329 r3423  
    7171  };
    7272
     73  class t_llInfo {
     74   public:
     75    QString AC;
     76    QString prn;
     77  };
     78
    7379  void processEpochs(const QList<cmbEpoch*>& epochs);
    7480  void dumpResults(const bncTime& resTime,
Note: See TracChangeset for help on using the changeset viewer.