ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
neoclassic2coresource.f90
Go to the documentation of this file.
1 !-------------------------------------------------------!
2 !-------------------------------------------------------!
3  SUBROUTINE neoclassic2coresource(NEOCLASSIC, CORESOURCE)
4 !-------------------------------------------------------!
5 ! This routine converts sourceort data from !
6 ! NEOCLASSIC to CORESOURCE CPO !
7 !-------------------------------------------------------!
8 ! Source: --- !
9 ! Developers: D.Kalupin !
10 ! Kontacts: D.Kalupin@fz-juelich.de !
11 ! !
12 ! Comments: should be udated after NCLASS !
13 ! is available to the ETS !
14 ! !
15 !-------------------------------------------------------!
16 
17 
18  USE euitm_schemas
19  USE itm_constants
20  USE convert
21 
22  IMPLICIT NONE
23 
24  TYPE (type_neoclassic), POINTER :: neoclassic(:)
25  TYPE (type_coresource), POINTER :: coresource(:)
26 
27  CALL convert_neoclassic2coresource(neoclassic, coresource)
28 
29 
30  RETURN
31 
32 
33  END SUBROUTINE neoclassic2coresource
34 !-------------------------------------------------------!
35 !-------------------------------------------------------!
subroutine convert_neoclassic2coresource(NEOCLASSIC, CORESOURCE)
Definition: convert.f90:906
Module converts to/from CPOs to ETS types.
Definition: convert.f90:8
subroutine neoclassic2coresource(NEOCLASSIC, CORESOURCE)