FLASH-X
Doxygen Generated Documentation From Interface Source Code
Logfile_stamp.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.
56
57
58
59
60#include "constants.h"
61
62subroutine Logfile_stampInt( intVal, tag, attrib)
63
64implicit none
65 integer, intent(in) :: intVal
66 character(len=*), intent(in) :: tag
67 character(len=*), intent(in), OPTIONAL :: attrib
68
69 return
70
71end subroutine Logfile_stampInt
72
73subroutine Logfile_stampIntArray( intArr, len, tag, attrib)
74
75implicit none
76
77 character(len=*),intent(in) :: tag
78 character(len=*), intent(in),OPTIONAL :: attrib
79 integer,intent(in) :: len
80 integer, dimension(len), intent(in) :: intArr
81
82 return
83
84end subroutine Logfile_stampIntArray
85
86subroutine Logfile_stampReal( realVal, tag, attrib)
87
88 implicit none
89 real, intent(in) :: realVal
90 character(len=*), intent(in) :: tag
91 character(len=*), intent(in), OPTIONAL :: attrib
92
93 return
94
95end subroutine Logfile_stampReal
96
97subroutine Logfile_stampRealArray( realArr, len, tag, attrib)
98
99 implicit none
100 character(len=*),intent(in) :: tag
101 character(len=*), intent(in), OPTIONAL :: attrib
102 integer,intent(in) :: len
103 real, dimension(len),intent(in) :: realArr
104
105 return
106
107end subroutine Logfile_stampRealArray
108
109subroutine Logfile_stampStr( string, tag, attrib)
110
111implicit none
112 character(len=*), intent(in) :: string
113 character(len=*), intent(in), OPTIONAL :: tag, attrib
114
115 return
116
117end subroutine Logfile_stampStr
118
119subroutine Logfile_stampStrArray( strArr, len, tag, attrib)
120
121implicit none
122 character(len=*), intent(in) :: tag
123 character(len=*), intent(in), OPTIONAL :: attrib
124 integer,intent(in) :: len
125 character(len=*), dimension(len),intent(in) :: strArr
126
127 return
128
129end subroutine Logfile_stampStrArray
130
131
132subroutine Logfile_stampStrPair( strArr, len, dimen, tag, attrib)
133
134implicit none
135
136 character(len=*),intent(in) :: tag
137 character(len=*),intent(in), OPTIONAL :: attrib
138 integer,intent(in) :: len, dimen
139 character(len=*),dimension(len,dimen),intent(in) :: strArr
140
141 return
142
143end subroutine Logfile_stampStrPair
subroutine Logfile_stampRealArray(realArr, len, tag, attrib)
subroutine Logfile_stampStr(string, tag, attrib)
subroutine Logfile_stampInt(intVal, tag, attrib)
subroutine Logfile_stampReal(realVal, tag, attrib)
subroutine Logfile_stampStrArray(strArr, len, tag, attrib)
subroutine Logfile_stampStrPair(strArr, len, dimen, tag, attrib)
subroutine Logfile_stampIntArray(intArr, len, tag, attrib)