FLASH-X
Doxygen Generated Documentation From Interface Source Code
RuntimeParameters_getAll.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!!
13!!
39
40
41
42
43subroutine RuntimeParameters_getAllReal (num, names, values, changed)
44
45implicit none
46#include "constants.h"
47
48 integer, intent(inout) :: num
49 character(len=MAX_STRING_LENGTH), intent(inout) :: names(num)
50 real, intent(inout) :: values(num)
51 logical, intent(inout) :: changed(num)
52
54
55
56
57subroutine RuntimeParameters_getAllInt (num, names, values, changed)
58
59implicit none
60#include "constants.h"
61
62 integer, intent(inout) :: num
63 character(len=MAX_STRING_LENGTH), intent(inout) :: names(num)
64 integer, intent(inout) :: values(num)
65 logical, intent(inout) :: changed(num)
66
67end subroutine RuntimeParameters_getAllInt
68
69
70
71subroutine RuntimeParameters_getAllStr (num, names, values, changed)
72
73implicit none
74#include "constants.h"
75
76 integer, intent(inout) :: num
77 character(len=MAX_STRING_LENGTH), intent(inout) :: names(num), values(num)
78 logical, intent(inout) :: changed(num)
79
80end subroutine RuntimeParameters_getAllStr
81
82
83
84subroutine RuntimeParameters_getAllLog (num, names, values, changed)
85
86implicit none
87#include "constants.h"
88
89 integer, intent(inout) :: num
90 character(len=MAX_STRING_LENGTH), intent(inout) :: names(num)
91 logical, intent(inout) :: values(num)
92 logical, intent(inout) :: changed(num)
93
94end subroutine RuntimeParameters_getAllLog
95
96
97
subroutine RuntimeParameters_getAllReal(num, names, values, changed)
subroutine RuntimeParameters_getAllStr(num, names, values, changed)
subroutine RuntimeParameters_getAllInt(num, names, values, changed)
subroutine RuntimeParameters_getAllLog(num, names, values, changed)