Ignore:
Timestamp:
10/12/20 11:23:54 (4 years ago)
Author:
ymipsl
Message:

Bug fix when using grid masking. Grid local connector apply systematicalling grid masking need for data coming from model.
Add a flag to chose using masking or not.

YM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/dev/dev_ym/XIOS_COUPLING/src/node/grid.cpp

    r1956 r1960  
    33883388  void CGrid::computeModelToWorkflowConnector(void) 
    33893389  { 
    3390     modelToWorkflowConnector_ = getGridLocalElements()->getConnector(CElementView::MODEL,CElementView::WORKFLOW) ; 
     3390    modelToWorkflowConnector_ = getGridLocalElements()->getConnector(CElementView::MODEL,CElementView::WORKFLOW,true) ; 
    33913391  } 
    33923392 
     
    33983398  void CGrid::computeWorkflowToModelConnector(void) 
    33993399  { 
    3400     workflowToModelConnector_ = getGridLocalElements()->getConnector(CElementView::WORKFLOW,CElementView::MODEL) ; 
     3400    workflowToModelConnector_ = getGridLocalElements()->getConnector(CElementView::WORKFLOW,CElementView::MODEL,true) ; 
    34013401  } 
    34023402 
Note: See TracChangeset for help on using the changeset viewer.