Changeset 6343 in ntrip
- Timestamp:
- Nov 26, 2014, 5:22:34 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncmain.cpp
r5993 r6343 53 53 #include "rinex/reqcedit.h" 54 54 #include "rinex/reqcanalyze.h" 55 #include "orbComp/sp3Comp.h" 55 56 56 57 using namespace std; … … 154 155 } 155 156 156 // Post-Processing reqc edit157 // -------------------------158 else if (settings.value("reqcAction").toString() == "Edit/Concatenate") {159 BNC_CORE->setMode(t_bncCore::batchPostProcessing);160 t_reqcEdit* reqcEdit = new t_reqcEdit(0);161 reqcEdit->start();162 }163 164 // Post-Processing reqc analyze165 // ----------------------------166 else if (settings.value("reqcAction").toString() == "Analyze") {167 BNC_CORE->setMode(t_bncCore::batchPostProcessing);168 t_reqcAnalyze* reqcAnalyze = new t_reqcAnalyze(0);169 reqcAnalyze->start();170 }171 172 157 // Post-Processing PPP 173 158 // ------------------- … … 179 164 } 180 165 166 // Post-Processing reqc edit 167 // ------------------------- 168 else if (settings.value("reqcAction").toString() == "Edit/Concatenate") { 169 BNC_CORE->setMode(t_bncCore::batchPostProcessing); 170 t_reqcEdit* reqcEdit = new t_reqcEdit(0); 171 reqcEdit->start(); 172 } 173 174 // Post-Processing reqc analyze 175 // ---------------------------- 176 else if (settings.value("reqcAction").toString() == "Analyze") { 177 BNC_CORE->setMode(t_bncCore::batchPostProcessing); 178 t_reqcAnalyze* reqcAnalyze = new t_reqcAnalyze(0); 179 reqcAnalyze->start(); 180 } 181 182 // SP3 Files Comparison 183 // -------------------- 184 else if (!settings.value("sp3CompFile").toString().isEmpty()) { 185 BNC_CORE->setMode(t_bncCore::batchPostProcessing); 186 t_sp3Comp* sp3Comp = new t_sp3Comp(0); 187 sp3Comp->start(); 188 } 189 181 190 // Non-Interactive (data gathering) 182 191 // --------------------------------
Note:
See TracChangeset
for help on using the changeset viewer.