Ignore:
Timestamp:
06/25/18 12:12:42 (6 years ago)
Author:
oabramkina
Message:

Adding a new domain transformation "domain_extract".

For now it has only the functionalities of zoom.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/trunk/src/generate_fortran_interface.cpp

    r1492 r1549  
    3636  CExpandDomain expandDomain; 
    3737  CReorderDomain reorderDomain; 
     38  CExtractDomain extractDomain; 
    3839 
    3940  CInterpolateAxis interpolateAxis; 
     
    315316  reorderDomain.generateFortranInterface(file); 
    316317 
     318  file.open((path+"extract_domain_interface_attr.F90").c_str()); 
     319  extractDomain.generateFortran2003Interface(file); 
     320  file.close(); 
     321 
     322  file.open((path+"icextract_domain_attr.cpp").c_str()); 
     323  extractDomain.generateCInterface(file); 
     324  file.close(); 
     325 
     326  file.open((path+"iextract_domain_attr.F90").c_str()); 
     327  extractDomain.generateFortranInterface(file); 
     328 
    317329  file.close(); 
    318330   
Note: See TracChangeset for help on using the changeset viewer.