Ignore:
Timestamp:
09/10/20 13:51:02 (4 years ago)
Author:
ymipsl
Message:

Big update on on going work related to data distribution and transfer between clients and servers.
Revisite of the source and store filter using "connectors".

YM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/dev/dev_ym/XIOS_COUPLING/src/distribution/element.cpp

    r1918 r1930  
    2929  { 
    3030    views_[type] = new CDistributedView(this, type, indexView) ; 
     31  }  
     32 
     33  void CDistributedElement::addView(CElementView::type type, std::map<int, CArray<bool,1>>& maskView) 
     34  { 
     35    views_[type] = new CDistributedView(this, type, maskView) ; 
    3136  }  
    3237 
     
    118123  }  
    119124 
     125  void CLocalElement::addView(CElementView::type type, CArray<bool,1>& maskView) 
     126  { 
     127    views_[type] = new CLocalView(this, type, maskView) ; 
     128  }  
     129 
    120130  void CLocalElement::addFullView(void) 
    121131  { 
Note: See TracChangeset for help on using the changeset viewer.