Ignore:
Timestamp:
11/12/15 16:33:14 (8 years ago)
Author:
mhnguyen
Message:

Generating Fortran interface for zoom_axis and zoom_domain

Test
+) On Curie
+) All results are correct

File:
1 edited

Legend:

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

    r591 r784  
    77#include "context.hpp" 
    88#include "file.hpp" 
     9#include "zoom_domain.hpp" 
     10#include "zoom_axis.hpp" 
    911 
    1012int main (int argc, char ** argv, char ** UNUSED (env)) 
     
    2931  CFileGroup filegroup; 
    3032 
     33  CZoomDomain zoomDomain; 
     34  CZoomAxis zoomAxis; 
     35 
    3136  ostringstream oss; 
    3237  ofstream file; 
     
    195200  file.close(); 
    196201 
     202  file.open((path+"zoom_domain_interface_attr.F90").c_str()); 
     203  zoomDomain.generateFortran2003Interface(file); 
     204  file.close(); 
     205 
     206  file.open((path+"iczoom_domain_attr.cpp").c_str()); 
     207  zoomDomain.generateCInterface(file); 
     208  file.close(); 
     209 
     210  file.open((path+"izoom_domain_attr.F90").c_str()); 
     211  zoomDomain.generateFortranInterface(file); 
     212  file.close(); 
     213 
     214  file.open((path+"zoom_axis_interface_attr.F90").c_str()); 
     215  zoomAxis.generateFortran2003Interface(file); 
     216  file.close(); 
     217 
     218  file.open((path+"iczoom_axis_attr.cpp").c_str()); 
     219  zoomAxis.generateCInterface(file); 
     220  file.close(); 
     221 
     222  file.open((path+"izoom_axis_attr.F90").c_str()); 
     223  zoomAxis.generateFortranInterface(file); 
     224  file.close(); 
    197225 
    198226  file.open((path+"context_interface_attr.F90").c_str()); 
     
    208236  file.close(); 
    209237 
     238 
     239 
    210240} 
Note: See TracChangeset for help on using the changeset viewer.