Ignore:
Timestamp:
03/28/23 16:42:11 (15 months ago)
Author:
ymipsl
Message:

First guess in supression of attached mode replaced by online reader and write filters

YM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS3/dev/XIOS_ATTACHED/src/node/axis.cpp

    r2461 r2482  
    2424      : CObjectTemplate<CAxis>() 
    2525      , CAxisAttributes(), isChecked(false), relFiles() 
    26       , hasBounds(false), isCompressible_(false) 
    27       , transformationMap_(), hasValue(false), hasLabel(false) 
     26      , hasBounds_(false), isCompressible_(false) 
     27      , transformationMap_() 
    2828      , clients() 
    2929   { 
     
    3333      : CObjectTemplate<CAxis>(id) 
    3434      , CAxisAttributes(), isChecked(false), relFiles() 
    35       , hasBounds(false), isCompressible_(false) 
    36       , transformationMap_(), hasValue(false), hasLabel(false) 
     35      , hasBounds_(false), isCompressible_(false) 
     36      , transformationMap_() 
    3737      , clients() 
    3838   { 
     
    167167         size += CArray<bool,1>::size(n_glo); 
    168168         size += CArray<double,1>::size(n_glo); 
    169          if (hasBounds) 
     169         if (hasBounds_) 
    170170           size += CArray<double,2>::size(2*n_glo); 
    171          if (hasLabel) 
     171         if (hasLabel_) 
    172172          size += CArray<StdString,1>::size(n_glo); 
    173173       } 
     
    200200         size += CArray<bool,1>::size(it->second.size()); 
    201201         size += CArray<double,1>::size(it->second.size()); 
    202          if (hasBounds) 
     202         if (hasBounds_) 
    203203           size += CArray<double,2>::size(2 * it->second.size()); 
    204          if (hasLabel) 
     204         if (hasLabel_) 
    205205           size += CArray<StdString,1>::size(it->second.size()); 
    206206 
     
    459459                                   << ") than the one defined by the \'size\' attribute (" << n.getValue() << ").") 
    460460          else return false ;  
    461         this->hasValue = true; 
     461        this->hasValue_ = true; 
    462462      } 
    463463 
     
    569569                               << "Bounds size is "<< bounds.extent(0) << " x " << bounds.extent(1) << ".") 
    570570         else return false ; 
    571        hasBounds = true; 
    572      } 
    573      else hasBounds = false; 
     571       hasBounds_ = true; 
     572     } 
     573     else hasBounds_ = false; 
    574574     return true ; 
    575575   } 
     
    587587                              << "label size is "<< label.extent(0)<<  " .") 
    588588        else return false ; 
    589       hasLabel = true; 
    590     } 
    591     else hasLabel = false; 
     589      hasLabel_ = true; 
     590    } 
     591    else hasLabel_ = false; 
    592592    return true ; 
    593593  } 
     
    11651165    CContext* context = CContext::getCurrent(); 
    11661166 
    1167     if (hasValue) 
     1167    if (hasValue_) 
    11681168    { 
    11691169      { // send level value 
     
    11751175    } 
    11761176 
    1177     if (hasBounds) 
     1177    if (hasBounds_) 
    11781178    { 
    11791179      { // send bounds level value 
     
    11851185    } 
    11861186 
    1187     if (hasLabel) 
     1187    if (hasLabel_) 
    11881188    { 
    11891189      { // send label 
Note: See TracChangeset for help on using the changeset viewer.