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_field_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_field_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: 560 bytes
Line 
1MODULE mod_field_definition
2  USE mod_field_group
3 
4  TYPE(field_group),SAVE,POINTER :: field_definition
5 
6CONTAINS
7
8  SUBROUTINE field_definition__swap_context(saved_field_definition)
9  IMPLICIT NONE
10    TYPE(field_group),POINTER :: saved_field_definition
11 
12    field_definition=>saved_field_definition
13
14  END SUBROUTINE field_definition__swap_context
15
16
17  SUBROUTINE field_definition__Init
18  IMPLICIT NONE
19 
20   CALL field_group__new(field_definition,"field_definition")
21
22  END SUBROUTINE field_definition__Init
23 
24       
25END MODULE mod_field_definition
26
Note: See TracBrowser for help on using the repository browser.