source: XIOS/dev/dev_ym/XIOS_COUPLING/src/distribution/grid_client_server_remote_connector.hpp @ 2236

Last change on this file since 2236 was 2236, checked in by ymipsl, 3 years ago

Fix problem in remoteConnector when computing grid to sent to server.
Some optimisations when grid is not distributed need knowledge of the workflow view.
New CGridClientServerConnector class created based on CGridRemoteConnector.

YM

  • Property svn:executable set to *
File size: 551 bytes
Line 
1#ifndef __GRID_CLIENT_SERVER_REMOTE_CONNECTOR_HPP__
2#define __GRID_CLIENT_SERVER_REMOTE_CONNECTOR_HPP__
3
4#include "grid_remote_connector.hpp"
5
6namespace xios
7{
8 
9  class CGridClientServerRemoteConnector : public CGridRemoteConnector
10  {
11
12    public:
13
14      CGridClientServerRemoteConnector(vector<CLocalView*>& srcView, vector<CLocalView*>& worflowSrcView, vector<CDistributedView*>& dstView, MPI_Comm localComm, int remoteSize) ;
15      void computeConnector(void) ;
16      vector<CLocalView*> srcWorkflowView_ ;   
17  } ;
18
19}
20
21#endif
Note: See TracBrowser for help on using the repository browser.