- Timestamp:
- May 7, 2024, 10:00:37 PM (7 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/combination/bnccomb.cpp
r10481 r10482 537 537 if ((newClk._time >= currentTime) || // future time stamp 538 538 (currentTime - newClk._time) > 60.0) { // very old data sets 539 #ifdef BNC_DEBUG_CMB 539 540 emit newMessage("bncComb: future or very old data sets: " + acName.toLatin1() + " " + newClk._prn.toString().c_str() + 540 541 QString(" %1 ").arg(newClk._time.timestr().c_str()).toLatin1() + "vs. current time" + 541 542 QString(" %1 ").arg(currentTime.timestr().c_str()).toLatin1(), true); 543 #endif 542 544 continue; 543 545 } … … 547 549 // -------------------- 548 550 if (_resTime.valid() && newClk._time <= _resTime) { 551 #ifdef BNC_DEBUG_CMB 549 552 emit newMessage("bncComb: old correction: " + acName.toLatin1() + " " + newClk._prn.toString().c_str() + 550 553 QString(" %1 ").arg(newClk._time.timestr().c_str()).toLatin1() + "vs. last processing Epoch" + 551 554 QString(" %1 ").arg(_resTime.timestr().c_str()).toLatin1(), true); 555 #endif 552 556 continue; 553 557 } … … 736 740 ephLast->checkState() == t_eph::outdated || 737 741 ephLast->checkState() == t_eph::unhealthy) { 742 #ifdef BNC_DEBUG_CMB 738 743 emit newMessage("bncComb: ephLast not ok (checkState: " + ephLast->checkStateToString().toLatin1() + ") for " + prn.mid(0,3).toLatin1(), true); 744 #endif 739 745 delete _newCorr; _newCorr = 0; 740 746 continue;
Note:
See TracChangeset
for help on using the changeset viewer.