- Timestamp:
- Mar 23, 2020, 11:46:21 AM (5 years ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppClient.cpp
r8905 r8910 67 67 } 68 68 69 if ( OPT->_refSatRequired) {69 if (_opt->_refSatRequired) { 70 70 for (unsigned iSys = 0; iSys < OPT->systems().size(); iSys++) { 71 71 char system = OPT->systems()[iSys]; -
trunk/BNC/src/PPP/pppFilter.cpp
r8905 r8910 38 38 _numSat = 0; 39 39 _obsPool = obsPool; 40 _refPrn = t_prn(); 40 41 } 41 42 … … 122 123 for (unsigned iSys = 0; iSys < OPT->systems().size(); iSys++) { 123 124 char system = OPT->systems()[iSys]; 124 t_prn refPrn = (_obsPool->getRefSatMapElement(system))->prn(); 125 if (OPT->_refSatRequired) { 126 _refPrn = (_obsPool->getRefSatMapElement(system))->prn(); 127 } 125 128 vector<t_pppSatObs*> obsVector; 126 129 for (unsigned jj = 0; jj < allObs.size(); jj++) { … … 129 132 } 130 133 } 131 if (processSystem(OPT->LCs(system), obsVector, refPrn,134 if (processSystem(OPT->LCs(system), obsVector, _refPrn, 132 135 epoch->pseudoObsIono(), preProcessing) != success) { 133 136 return failure; … … 140 143 for (unsigned iSys = 0; iSys < OPT->systems().size(); iSys++) { 141 144 char system = OPT->systems()[iSys]; 142 t_prn refPrn = (_obsPool->getRefSatMapElement(system))->prn(); 145 if (OPT->_refSatRequired) { 146 _refPrn = (_obsPool->getRefSatMapElement(system))->prn(); 147 } 143 148 unsigned int num = 0; 144 149 vector<t_pppSatObs*> obsVector; … … 150 155 } 151 156 LOG << epoTimeStr << " SATNUM " << system << ' ' << right << setw(2) << num << endl; 152 if (processSystem(OPT->LCs(system), obsVector, refPrn,157 if (processSystem(OPT->LCs(system), obsVector, _refPrn, 153 158 epoch->pseudoObsIono(), preProcessing) != success) { 154 159 return failure; -
trunk/BNC/src/PPP/pppFilter.h
r8905 r8910 102 102 bncTime _firstEpoTime; 103 103 bncTime _lastEpoTimeOK; 104 t_prn _refPrn; 104 105 }; 105 106
Note:
See TracChangeset
for help on using the changeset viewer.