New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
mod_axis_definition.f90 in branches/nemo_v3_3_beta/NEMOGCM/EXTERNAL/XMLIO_SERVER/src/XMLIO – NEMO

source: branches/nemo_v3_3_beta/NEMOGCM/EXTERNAL/XMLIO_SERVER/src/XMLIO/mod_axis_definition.f90 @ 2281

Last change on this file since 2281 was 2281, checked in by smasson, 14 years ago

set proper svn properties to all files...

  • Property svn:keywords set to Id
File size: 578 bytes
Line 
1MODULE mod_axis_definition
2  USE mod_axis_group
3 
4  TYPE(axis_group),SAVE,POINTER :: axis_definition
5 
6CONTAINS
7
8  SUBROUTINE axis_definition__swap_context(saved_axis_definition)     
9  IMPLICIT NONE
10    TYPE(axis_group),POINTER :: saved_axis_definition
11   
12    axis_definition=>saved_axis_definition
13   
14  END SUBROUTINE axis_definition__swap_context 
15
16  SUBROUTINE axis_definition__Init
17  USE mod_axis_group
18  IMPLICIT NONE
19 
20    CALL axis_group__new(axis_definition,"axis_definition")
21   
22  END SUBROUTINE axis_definition__Init
23       
24END MODULE mod_axis_definition
Note: See TracBrowser for help on using the repository browser.