aboutsummaryrefslogtreecommitdiff
path: root/src/cctk_Parameter.F90
blob: 476c903dd309f9cef3560a5de4e07cc6fc02c2a7 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#include "cctk.h"

module cctk_Parameter
  implicit none

  interface

     subroutine CCTK_ParameterLevel (level)
       implicit none
       integer level
     end subroutine CCTK_ParameterLevel

     subroutine CCTK_ParameterSet (ierr, name, thorn, value)
       implicit none
       integer      ierr
       character(*) name
       character(*) thorn
       character(*) value
     end subroutine CCTK_ParameterSet

     subroutine CCTK_ParameterGet (param, name, thorn, type)
       implicit none
       CCTK_POINTER_TO_CONST param
       character(*)          name
       character(*)          thorn
       integer               type
     end subroutine CCTK_ParameterGet

     subroutine CCTK_ParameterValString (nchars, param, thorn, value)
       implicit none
       integer      nchars
       character(*) param
       character(*) thorn
       character(*) value
     end subroutine CCTK_ParameterValString
  
     subroutine CCTK_ParameterWalk (ierr, first, origin, pfullname, pdata)
       implicit none
       integer      ierr
       integer      first
       character(*) origin
       CCTK_POINTER pfullname
       CCTK_POINTER pdata
     end subroutine CCTK_ParameterWalk

     subroutine CCTK_ParamtereDate (data, name, thorn)
       implicit none
       CCTK_POINTER_TO_CONST data
       character(*)          name
       character(*)          thorn
     end subroutine CCTK_ParamtereDate

     subroutine CCTK_ParameterQueryTimesSet (ierr, name, thorn)
       implicit none
       integer ierr
       character(*) name
       character(*) thorn
     end subroutine CCTK_ParameterQueryTimesSet

  end interface

end module cctk_Parameter