- Timestamp:
- Sep 24, 2015, 10:14:41 AM (9 years ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppFilter.cpp
r7267 r7302 49 49 50 50 _numSat = 0; 51 const double maxSolGap = 60.0; 51 52 52 53 if (!_parlist) { … … 66 67 _epoTime = epoch->epoTime(); 67 68 68 if (!_firstEpoTime.valid()) { 69 if (!_firstEpoTime.valid() || 70 !_lastEpoTimeOK.valid() || 71 (maxSolGap > 0.0 && _epoTime - _lastEpoTimeOK > maxSolGap)) { 69 72 _firstEpoTime = _epoTime; 70 73 } … … 131 134 132 135 _parlist->printResult(_epoTime, _QFlt, _xFlt); 133 136 _lastEpoTimeOK = _epoTime; // remember time of last successful epoch processing 134 137 return success; 135 138 } -
trunk/BNC/src/PPP/pppFilter.h
r7237 r7302 69 69 }; 70 70 71 t_irc processSystem(const std::vector<t_lc::type>& LCs, 71 t_irc processSystem(const std::vector<t_lc::type>& LCs, 72 72 const std::vector<t_pppSatObs*>& obsVector); 73 73 74 t_irc detectCycleSlips(const std::vector<t_lc::type>& LCs, 74 t_irc detectCycleSlips(const std::vector<t_lc::type>& LCs, 75 75 const std::vector<t_pppSatObs*>& obsVector); 76 76 … … 91 91 t_dop _dop; 92 92 bncTime _firstEpoTime; 93 bncTime _lastEpoTimeOK; 93 94 }; 94 95
Note:
See TracChangeset
for help on using the changeset viewer.