Changeset 3423 in ntrip
- Timestamp:
- Sep 11, 2011, 6:22:04 PM (13 years ago)
- Location:
- trunk/BNC/combination
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/combination/bnccomb.cpp
r3372 r3423 462 462 int iObs = 0; 463 463 QListIterator<cmbEpoch*> itEpo(epochs); 464 QVector< QString> llInfo(ll.Nrows());464 QVector<t_llInfo> llInfo(ll.Nrows()); 465 465 while (itEpo.hasNext()) { 466 466 cmbEpoch* epo = itEpo.next(); … … 482 482 483 483 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; 485 486 } 486 487 } … … 527 528 out << resTime.datestr().c_str() << " " << resTime.timestr().c_str() 528 529 << " Maximum Residuum " << maxRes << ' ' 529 << llInfo[maxResIndex-1] ;530 << llInfo[maxResIndex-1].AC << ' ' << llInfo[maxResIndex-1].prn; 530 531 531 532 if (maxRes > _MAXRES) { -
trunk/BNC/combination/bnccomb.h
r3329 r3423 71 71 }; 72 72 73 class t_llInfo { 74 public: 75 QString AC; 76 QString prn; 77 }; 78 73 79 void processEpochs(const QList<cmbEpoch*>& epochs); 74 80 void dumpResults(const bncTime& resTime,
Note:
See TracChangeset
for help on using the changeset viewer.