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