- Timestamp:
- Apr 12, 2022, 11:55:07 AM (3 years ago)
- Location:
- trunk/BNC/src/combination
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/combination/bnccomb.cpp
r9676 r9689 301 301 } 302 302 if (_bsx) { 303 _nextShotTimeBsx = QTime(23, 59, 59, 999); 303 _nextShotTimeBsx1 = QTime(23, 59, 59, 999); 304 _nextShotTimeBsx2 = QTime(11, 59, 59, 999); 304 305 } 305 306 … … 354 355 _bsx = 0; 355 356 } 356 #ifdef BNC_DEBUG_CMB357 //#ifdef BNC_DEBUG_CMB 357 358 else { 358 359 emit newMessage("Successfully read Bias SINEX file", true); 359 360 } 360 #endif361 //#endif 361 362 } 362 363 … … 680 681 if (_bsx) { 681 682 QTime currTime = currentDateAndTimeGPS().time(); 682 int ms = currTime.msecsTo(_nextShotTimeBsx); 683 // Time 1 684 int ms = currTime.msecsTo(_nextShotTimeBsx1); 685 if (ms < 30000) { 686 ms = 30000; 687 } 688 QTimer::singleShot(ms, this, SLOT(slotReadBiasSnxFile())); 689 // Time 2 690 ms = currTime.msecsTo(_nextShotTimeBsx2); 683 691 if (ms < 30000) { 684 692 ms = 30000; -
trunk/BNC/src/combination/bnccomb.h
r9676 r9689 219 219 bncAntex* _antex; 220 220 bncBiasSnx* _bsx; 221 QTime _nextShotTimeBsx; 221 QTime _nextShotTimeBsx1; 222 QTime _nextShotTimeBsx2; 222 223 double _MAXRES; 223 224 QMap<char, QString> _masterOrbitAC;
Note:
See TracChangeset
for help on using the changeset viewer.