FLASH-X
Doxygen Generated Documentation From Interface Source Code
RuntimeParameters_add.F90
Go to the documentation of this file.
1!! NOTICE
2!! Copyright 2022 UChicago Argonne, LLC and contributors
3!!
4!! Licensed under the Apache License, Version 2.0 (the "License");
5!! you may not use this file except in compliance with the License.
6!!
7!! Unless required by applicable law or agreed to in writing, software
8!! distributed under the License is distributed on an "AS IS" BASIS,
9!! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10!! See the License for the specific language governing permissions and
11!! limitations under the License.
12!!
38
39
40
41subroutine RuntimeParameters_addReal (name, value, rwState)
42implicit none
43 character(len=*), intent(in) :: name
44 real, intent(in) :: value
45 integer,OPTIONAL,intent(in) :: rwState
46end subroutine RuntimeParameters_addReal
47
48
49
50subroutine RuntimeParameters_addInt (name, value, rwState)
51implicit none
52 character(len=*), intent(in) :: name
53 integer, intent(in) :: value
54 integer,OPTIONAL,intent(in) :: rwState
55end subroutine RuntimeParameters_addInt
56
57
58
59subroutine RuntimeParameters_addStr (name, value, rwState)
60implicit none
61 character(len=*), intent(in) :: name
62 character(len=*), intent(in) :: value
63 integer,OPTIONAL,intent(in) :: rwState
64end subroutine RuntimeParameters_addStr
65
66
67
68subroutine RuntimeParameters_addLog (name, value, rwState)
69implicit none
70 character(len=*), intent(in) :: name
71 logical, intent(in) :: value
72 integer,OPTIONAL,intent(in) :: rwState
73end subroutine RuntimeParameters_addLog
74
75
76
subroutine RuntimeParameters_addLog(name, value, rwState)
subroutine RuntimeParameters_addReal(name, value, rwState)
subroutine RuntimeParameters_addInt(name, value, rwState)
subroutine RuntimeParameters_addStr(name, value, rwState)