source: XIOS/dev/dev_ym/XIOS_COUPLING/src/distribution/grid_local_view.cpp @ 1918

Last change on this file since 1918 was 1918, checked in by ymipsl, 4 years ago

Big update on on going work related to data distribution and transfer between clients and servers.

  • move all related file into distribution directorie
  • implement the concept of data "View"
  • implement the concept of "connector" which make the data transfer between 2 differents "Views"

YM

  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 300 bytes
Line 
1#include "grid_local_view.hpp"
2#include "grid_elements.hpp"
3
4namespace xios
5{
6  CGridLocalView::CGridLocalView(CGridLocalElements* parent, CElementView::type type) : localMask_(parent->getLocalMask())
7  {
8    for(auto element : parent->getElements()) views_.push_back(element->getView(type)) ;
9  }
10
11}
Note: See TracBrowser for help on using the repository browser.