FLASH-X
Doxygen Generated Documentation From Interface Source Code
IO_getScalar.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!!
57
58
59
60subroutine IO_getScalarReal (name, value)
61
62
63implicit none
64 character(len=*), intent(in) :: name
65 real, intent(inout) :: value
66
67 return
68
69end subroutine IO_getScalarReal
70
71
72
73subroutine IO_getScalarInt (name, value)
74
75
76implicit none
77 character(len=*), intent(in) :: name
78 integer, intent(inout) :: value
79
80 return
81
82end subroutine IO_getScalarInt
83
84
85
86subroutine IO_getScalarStr (name, value)
87
88
89implicit none
90 character(len=*), intent(in) :: name, value
91 return
92
93end subroutine IO_getScalarStr
94
95
96
97subroutine IO_getScalarLog (name, value)
98
99
100implicit none
101 character(len=*), intent(in) :: name
102 logical, intent(inout) :: value
103
104 return
105
106end subroutine IO_getScalarLog
107
108
109
subroutine IO_getScalarStr(name, value)
subroutine IO_getScalarInt(name, value)
subroutine IO_getScalarReal(name, value)
subroutine IO_getScalarLog(name, value)