Changeset 6428 in ntrip for trunk/BNC/src/orbComp
- Timestamp:
- Dec 24, 2014, 5:15:40 PM (10 years ago)
- Location:
- trunk/BNC/src/orbComp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/orbComp/sp3Comp.cpp
r6427 r6428 50 50 51 51 bool excludeSat(const t_prn& prn) { 52 if (prn .system() == 'R') {52 if (prn == t_prn('R', 7)) { 53 53 return true; 54 54 } … … 406 406 } 407 407 } 408 409 // 410 //////////////////////////////////////////////////////////////////////////// 411 bool t_sp3Comp::excludeSat(const t_prn& prn) const { 412 if (prn == t_prn('R', 7)) { 413 return true; 414 } 415 else { 416 return false; 417 } 418 } 419 -
trunk/BNC/src/orbComp/sp3Comp.h
r6360 r6428 85 85 std::map<std::string, t_stat>& stat) const; 86 86 void compare(std::ostringstream& out) const; 87 bool excludeSat(const t_prn& prn) const; 87 88 88 QStringList _sp3FileNames; 89 QString _logFileName; 90 QFile* _logFile; 91 QTextStream* _log; 89 QStringList _sp3FileNames; 90 QString _logFileName; 91 QFile* _logFile; 92 QTextStream* _log; 93 std::set<t_prn> _excludeSats; 92 94 }; 93 95
Note:
See TracChangeset
for help on using the changeset viewer.