- Timestamp:
- Dec 10, 2024, 3:55:24 PM (6 days ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppParlist.cpp
r10583 r10584 389 389 const t_pppSatObs* satObs = obsVector[jj]; 390 390 char sys = satObs->prn().system(); 391 _usedSystems[sys]++; 392 } 391 if (OPT->LCs(sys).size()) { 392 _usedSystems[sys]++; 393 } 394 }; 395 393 396 394 397 // Check whether parameters have observations … … 428 431 // Receiver Clocks 429 432 // --------------- 430 if (_usedSystems .contains('G')) {433 if (_usedSystems['G']) { 431 434 required.push_back(new t_pppParam(t_pppParam::rClkG, t_prn(), t_lc::dummy)); 432 435 } 433 436 434 if (_usedSystems .contains('R')) {437 if (_usedSystems['R']) { 435 438 required.push_back(new t_pppParam(t_pppParam::rClkR, t_prn(), t_lc::dummy)); 436 439 } 437 440 438 if (_usedSystems .contains('E')) {441 if (_usedSystems['E']) { 439 442 required.push_back(new t_pppParam(t_pppParam::rClkE, t_prn(), t_lc::dummy)); 440 443 } 441 444 442 if (_usedSystems .contains('C')) {445 if (_usedSystems['C']) { 443 446 required.push_back(new t_pppParam(t_pppParam::rClkC, t_prn(), t_lc::dummy)); 444 447 }
Note:
See TracChangeset
for help on using the changeset viewer.