- Timestamp:
- Jan 19, 2012, 7:04:18 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/combination/bnccomb.cpp
r3589 r3590 314 314 delete _orbitCorrs[corrID]; 315 315 } 316 _orbitCorrs[corrID] = new cmbCorr(*newCorr); 316 _orbitCorrs[corrID] = newCorr; 317 return; 318 } 319 320 // Merge with saved orbit correction 321 // --------------------------------- 322 else if (newCorr->dClkSet && !newCorr->raoSet) { 323 QString corrID = newCorr->ID(); 324 if (_orbitCorrs.find(corrID) != _orbitCorrs.end()) { 325 mergeOrbitCorr(_orbitCorrs[corrID], newCorr); 326 } 317 327 } 318 328 … … 329 339 delete newCorr; 330 340 return; 331 }332 333 // Merge with saved orbit correction334 // ---------------------------------335 if (newCorr->dClkSet && !newCorr->raoSet) {336 QString corrID = newCorr->ID();337 if (_orbitCorrs.find(corrID) != _orbitCorrs.end()) {338 mergeOrbitCorr(_orbitCorrs[corrID], newCorr);339 }340 341 } 341 342
Note:
See TracChangeset
for help on using the changeset viewer.