CASToR
3.2
Tomographic Reconstruction (PET/SPECT/CT)
Main Page
Modules
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
~
+
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
~
+
Variables
_
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
Typedefs
Enumerations
Enumerator
+
Files
File List
+
File Members
+
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
+
Functions
_
b
c
d
e
f
g
i
l
m
o
p
r
s
t
w
Variables
Typedefs
+
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
s
t
u
v
w
bin_cmake
CMakeFiles
FindOpenMP
OpenMPCheckVersion.cpp
Go to the documentation of this file.
1
2
#include <stdio.h>
3
#include <omp.h>
4
const
char
ompver_str
[] = {
'I'
,
'N'
,
'F'
,
'O'
,
':'
,
'O'
,
'p'
,
'e'
,
'n'
,
'M'
,
5
'P'
,
'-'
,
'd'
,
'a'
,
't'
,
'e'
,
'['
,
6
(
'0'
+ ((_OPENMP/100000)%10)),
7
(
'0'
+ ((_OPENMP/10000)%10)),
8
(
'0'
+ ((_OPENMP/1000)%10)),
9
(
'0'
+ ((_OPENMP/100)%10)),
10
(
'0'
+ ((_OPENMP/10)%10)),
11
(
'0'
+ ((_OPENMP/1)%10)),
12
']'
,
'\0'
};
13
int
main
(
void
)
14
{
15
puts(
ompver_str
);
16
return
0;
17
}
ompver_str
const char ompver_str[]
Definition:
OpenMPCheckVersion.cpp:4
main
int main(void)
Definition:
OpenMPCheckVersion.cpp:13
Generated on Tue Oct 22 2024 21:49:44 for CASToR by
1.8.13