LMDZ
tpm_fft.F90
Go to the documentation of this file.
1 MODULE tpm_fft
2 USE parkind1 ,ONLY : jpim ,jprb
3 
4 IMPLICIT NONE
5 
6 SAVE
7 
8 TYPE fft_type
9  REAL(KIND=JPRB) ,POINTER :: trigs(:,:)
10  INTEGER(KIND=JPIM),POINTER :: nfax(:,:)
11 END TYPE fft_type
12 
13 TYPE(fft_type),ALLOCATABLE,TARGET :: fft_resol(:)
14 TYPE(fft_type),POINTER :: t
15 
16 !$OMP THREADPRIVATE(t)
17 
18 END MODULE tpm_fft
integer, parameter jprb
Definition: parkind1.F90:31
type(fft_type), pointer t
Definition: tpm_fft.F90:14
type(fft_type), dimension(:), allocatable, target fft_resol
Definition: tpm_fft.F90:13
integer, parameter jpim
Definition: parkind1.F90:13