Changeset 7941 in ntrip for branches/BNC_2.12/src


Ignore:
Timestamp:
Jun 1, 2016, 5:05:24 PM (8 years ago)
Author:
stuerze
Message:

minor changes to prevent QThread errors

Location:
branches/BNC_2.12/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/BNC_2.12/src/orbComp/sp3Comp.cpp

    r6612 r7941  
    3535 * Created:    24-Nov-2014
    3636 *
    37  * Changes:   
     37 * Changes:
    3838 *
    3939 * -----------------------------------------------------------------------*/
     
    7272}
    7373
    74 // 
     74//
    7575////////////////////////////////////////////////////////////////////////////
    7676void t_sp3Comp::run() {
    77  
     77
    7878  // Open Log File
    7979  // -------------
     
    125125  if (BNC_CORE->mode() != t_bncCore::interactive) {
    126126    qApp->exit(0);
     127    msleep(100); //sleep 0.1 sec
    127128  }
    128129  else {
     
    181182    Matrix       AA(dc.size(), nPar); AA = 0.0;
    182183    ColumnVector ll(dc.size());       ll = 0.0;
    183     map<t_prn, double>::const_iterator it; 
     184    map<t_prn, double>::const_iterator it;
    184185    int ii = -1;
    185186    for (it = dc.begin(); it != dc.end(); it++) {
     
    200201  // Regularize NN
    201202  // -------------
    202   RowVector HH(nPar); 
     203  RowVector HH(nPar);
    203204  HH.columns(1, epochs.size())      = 0.0;
    204205  HH.columns(epochs.size()+1, nPar) = 1.0;
    205206  SymmetricMatrix dN; dN << HH.t() * HH;
    206207  NN += dN;
    207  
     208
    208209  // Estimate Parameters
    209210  // -------------------
     
    417418}
    418419
    419 // 
     420//
    420421////////////////////////////////////////////////////////////////////////////
    421422bool t_sp3Comp::excludeSat(const t_prn& prn) const {
  • branches/BNC_2.12/src/rinex/reqcanalyze.cpp

    r7920 r7941  
    100100  if (BNC_CORE->mode() != t_bncCore::interactive) {
    101101    qApp->exit(0);
     102    msleep(100); //sleep 0.1 sec
    102103  }
    103104}
  • branches/BNC_2.12/src/rinex/reqcedit.cpp

    r7474 r7941  
    150150  if (BNC_CORE->mode() != t_bncCore::interactive) {
    151151    qApp->exit(0);
     152    msleep(100); //sleep 0.1 sec
    152153  }
    153154  else {
Note: See TracChangeset for help on using the changeset viewer.