source: XIOS/dev/dev_ym/XIOS_COUPLING/src/distribution/grid_local_view.hpp @ 1960

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

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

  • Property svn:executable set to *
File size: 534 bytes
Line 
1#ifndef __GRID_LOCAL_VIEW_HPP__
2#define __GRID_LOCAL_VIEW_HPP__
3
4#include "local_view.hpp"
5#include "element.hpp"
6
7namespace xios
8{
9  class CGridLocalElements;
10
11  class CGridLocalView
12  {
13    private:
14      std::vector<CLocalView*> views_ ;
15      std::vector<bool>& localMask_ ;
16      int size_ ;
17   
18    public:
19      CGridLocalView(CGridLocalElements* parent, CElementView::type type) ;
20      std::vector<CLocalView*>& getViews(void) {return views_ ;}
21      int getSize() { return size_ ;}
22  } ;
23}
24
25
26#endif
Note: See TracBrowser for help on using the repository browser.