Changeset 6343 in ntrip


Ignore:
Timestamp:
Nov 26, 2014, 5:22:34 PM (9 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncmain.cpp

    r5993 r6343  
    5353#include "rinex/reqcedit.h"
    5454#include "rinex/reqcanalyze.h"
     55#include "orbComp/sp3Comp.h"
    5556
    5657using namespace std;
     
    154155  }
    155156
    156   // Post-Processing reqc edit
    157   // -------------------------
    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 analyze
    165   // ----------------------------
    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 
    172157  // Post-Processing PPP
    173158  // -------------------
     
    179164  }
    180165
     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
    181190  // Non-Interactive (data gathering)
    182191  // --------------------------------
Note: See TracChangeset for help on using the changeset viewer.