Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
Related Functions
:
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
v
w
x
z
Files
File List
File Members
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
v
x
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
GitLab
LXR
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
Control
AthAllocators
AthAllocators
ArenaBlockAlignDetail.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
3
*/
4
17
#ifndef ATLALLOCATORS__ARENABLOCKALIGNDETAIL
18
#define ATLALLOCATORS__ARENABLOCKALIGNDETAIL
19
20
#include <cstddef>
21
namespace
SG
{
22
namespace
ArenaBlockAlignDetail {
23
24
struct
padForAlign
{
25
// gcc and clang seem to define this
26
// But not the same way ...
27
// gcc provides 16,32,64 as we change arch
28
// clang seem to provide 16 always...
29
// From the nature of the Block Header (other elements total size 24)
30
// 16 vs 32 costs the same in space overhead.
31
// So minimum 32
32
#if defined(__BIGGEST_ALIGNMENT__) && (__BIGGEST_ALIGNMENT__ > 32)
33
alignas
(__BIGGEST_ALIGNMENT__)
double
dummy
;
34
#else
35
alignas
(32)
double
dummy
;
36
#endif
37
};
38
39
constexpr
size_t
alignment
=
std::alignment_of<padForAlign>::value
;
40
41
}
// namespace ArenaBlockAlignDetail
42
}
// namespace SG
43
#endif
SG
Forward declaration.
Definition:
CaloCellPacker_400_500.h:32
athena.value
value
Definition:
athena.py:124
SG::ArenaBlockAlignDetail::padForAlign::dummy
double dummy
Definition:
ArenaBlockAlignDetail.h:35
SG::ArenaBlockAlignDetail::alignment
constexpr size_t alignment
Definition:
ArenaBlockAlignDetail.h:39
SG::ArenaBlockAlignDetail::padForAlign
Definition:
ArenaBlockAlignDetail.h:24
Generated on Sat Mar 22 2025 21:07:10 for ATLAS Offline Software by
1.8.18