Changeset 10235 in ntrip


Ignore:
Timestamp:
Nov 1, 2023, 10:29:30 AM (6 months ago)
Author:
stuerze
Message:

minor changes

Location:
trunk/BNC/src/combination
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/combination/bnccomb.cpp

    r10230 r10235  
    317317    delete icAC.next();
    318318  }
     319  _ACs.clear();
    319320
    320321  delete _rtnetDecoder;
     
    494495    if (BNC_CORE->mode() != t_bncCore::batchPostProcessing) {
    495496      if ((newClk._time >= currentTime) ||       // future time stamp
    496           (currentTime - newClk._time) > 60.0) { // very old data sets
     497          (currentTime - newClk._time) > 30.0) { // very old data sets
    497498  #ifdef BNC_DEBUG_CMB
    498499        emit newMessage("bncComb: future or very old data sets: " + acName.toLatin1() + " " + newClk._prn.toString().c_str() +
     
    567568
    568569    if (BNC_CORE->mode() != t_bncCore::batchPostProcessing) {
    569       if ((currentTime - epoTime) > 60.0) {
     570      if ((currentTime - epoTime) > 30.0) {
    570571        delete _epoClkData.front();
    571572        _epoClkData.pop_front();
  • trunk/BNC/src/combination/bnccomb.h

    r10229 r10235  
    9191      numObs.clear();
    9292    }
    93     QString  mountPoint;
    94     QString  name;
    95     double   weightFactor;
    96     bool     isAPC;
     93    QString              mountPoint;
     94    QString              name;
     95    double               weightFactor;
     96    bool                 isAPC;
    9797    QMap<char, unsigned> numObs;
    9898  };
     
    135135        delete it.next();
    136136      }
    137     }
    138     QVector<cmbCorr*> corrs;
     137      corrs.clear();
     138    }
     139    QVector<cmbCorr*>      corrs;
    139140  };
    140141
     
    146147    }
    147148    bncTime                 _time;
    148     std::vector<t_clkCorr> _clkCorr;
     149    std::vector<t_clkCorr>  _clkCorr;
    149150  };
    150151
Note: See TracChangeset for help on using the changeset viewer.