- Timestamp:
- Sep 9, 2012, 6:53:33 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/reqcanalyze.cpp
r4701 r4702 433 433 // Loop over all Chunks of Data 434 434 // ---------------------------- 435 bool slipFound = false; 435 436 for (int chunkStart = 0; chunkStart + numEpo < allObs._oneObsVec.size(); 436 437 chunkStart += chunkStep) { 438 439 if (chunkStart == 0) { 440 slipFound = false; 441 } 437 442 438 443 // Chunk-Specific Variables … … 570 575 slipL1 = true; 571 576 slipL2 = true; 572 _obsStat._prnStat[prn]._numSlipsFound += 1; 577 if (!slipFound) { 578 slipFound = true; 579 _obsStat._prnStat[prn]._numSlipsFound += 1; 580 } 573 581 } 574 582 else {
Note:
See TracChangeset
for help on using the changeset viewer.