Ignore:
Timestamp:
06/28/22 11:59:40 (2 years ago)
Author:
jderouillat
Message:

Forced usage of extract_domain when zoom_domain is specified, added messages to inform users of required modifications.

Location:
XIOS/dev/dev_ym/XIOS_COUPLING/src/node
Files:
2 edited

Legend:

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

    r2304 r2339  
    4747   TRY 
    4848   { 
    49      m["zoom_axis"] = TRANS_ZOOM_AXIS; 
     49     m["zoom_axis"] = TRANS_EXTRACT_AXIS; 
    5050     m["interpolate_axis"] = TRANS_INTERPOLATE_AXIS; 
    5151     m["extract_axis"] = TRANS_EXTRACT_AXIS; 
     
    808808        if (ite != it) 
    809809        { 
     810          if (it->first == "zoom_axis") 
     811          { 
     812            info(0) << "WARNING : " << it->first << " is deprecated, replaced by extract_axis." << endl; 
     813          } 
    810814          transformationMap_.push_back(std::make_pair(it->second, CTransformation<CAxis>::createTransformation(it->second, 
    811815                                                                                                               nodeId, 
  • XIOS/dev/dev_ym/XIOS_COUPLING/src/node/domain.cpp

    r2338 r2339  
    23422342  TRY 
    23432343  { 
    2344     m["zoom_domain"] = TRANS_ZOOM_DOMAIN; 
     2344    m["zoom_domain"] = TRANS_EXTRACT_DOMAIN; 
    23452345    m["interpolate_domain"] = TRANS_INTERPOLATE_DOMAIN; 
    23462346    m["generate_rectilinear_domain"] = TRANS_GENERATE_RECTILINEAR_DOMAIN; 
     
    25362536        if (ite != it) 
    25372537        { 
     2538          if (it->first == "zoom_domain") 
     2539          { 
     2540            info(0) << "WARNING : " << it->first << " is deprecated, replaced by extract_domain." << endl; 
     2541          } 
    25382542          transformationMap_.push_back(std::make_pair(it->second, CTransformation<CDomain>::createTransformation(it->second, 
    25392543                                                                                                                nodeId, 
Note: See TracChangeset for help on using the changeset viewer.