aboutsummaryrefslogtreecommitdiff
path: root/src/cctk_IO.F90
blob: e6bd7a84e7762146399762d48c2d05d35f382968 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#include "cctk.h"

module cctk_IO
  implicit none

  interface

     subroutine CCTK_OutputGH (ierr, GH)
       implicit none
       integer               ierr
       CCTK_POINTER_TO_CONST GH
     end subroutine CCTK_OutputGH

     subroutine CCTK_OutputVarAs (ierr, GH, var, alias)
       implicit none
       integer               ierr
       CCTK_POINTER_TO_CONST GH
       character(*)          var
       character(*)          alias
     end subroutine CCTK_OutputVarAs

     subroutine CCTK_OutputVar (ierr, GH, var)
       implicit none
       integer               ierr
       CCTK_POINTER_TO_CONST GH
       character(*)          var
     end subroutine CCTK_OutputVar

     subroutine CCTK_OutputVarByMethod (ierr, GH, var, method)
       implicit none
       integer               ierr
       CCTK_POINTER_TO_CONST GH
       character(*)          var
       character(*)          method
     end subroutine CCTK_OutputVarByMethod
     
  end interface
  
end module cctk_IO