Changeset 6318 in ntrip for trunk/BNC/src/rinex/reqcanalyze.cpp


Ignore:
Timestamp:
Nov 10, 2014, 4:22:47 PM (9 years ago)
Author:
stuerze
Message:

small changes to allow to disable the QC plot generation on request

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/rinex/reqcanalyze.cpp

    r6317 r6318  
    492492void t_reqcAnalyze::preparePlotData(const t_rnxObsFile* obsFile) {
    493493
    494   QVector<t_polarPoint*>* dataMP1  = new QVector<t_polarPoint*>;
    495   QVector<t_polarPoint*>* dataMP2  = new QVector<t_polarPoint*>;
    496   QVector<t_polarPoint*>* dataSNR1 = new QVector<t_polarPoint*>;
    497   QVector<t_polarPoint*>* dataSNR2 = new QVector<t_polarPoint*>;
    498 
    499494  bncSettings settings;
    500495  QString reqSkyPlotSystems = settings.value("reqcSkyPlotSystems").toString();
     
    511506    plotGal = true;
    512507  }
    513   else {
     508  else if (reqSkyPlotSystems == "ALL") {
    514509    plotGPS = true;
    515510    plotGlo = true;
    516511    plotGal = true;
    517512  }
     513  else {
     514          return;
     515  }
     516
     517  QVector<t_polarPoint*>* dataMP1  = new QVector<t_polarPoint*>;
     518  QVector<t_polarPoint*>* dataMP2  = new QVector<t_polarPoint*>;
     519  QVector<t_polarPoint*>* dataSNR1 = new QVector<t_polarPoint*>;
     520  QVector<t_polarPoint*>* dataSNR2 = new QVector<t_polarPoint*>;
    518521
    519522  // Loop over all observations
Note: See TracChangeset for help on using the changeset viewer.