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
w
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
DataModelTest
DataModelTestDataCommon
src
xAODTestWritePVec.h
Go to the documentation of this file.
1
// This file's extension implies that it's C, but it's really -*- C++ -*-.
2
/*
3
* Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration.
4
*/
13
#ifndef DATAMODELTESTDATACOMMON_XAODTESTWRITEPVEC_H
14
#define DATAMODELTESTDATACOMMON_XAODTESTWRITEPVEC_H
15
16
17
#include "
DataModelTestDataCommon/PVec.h
"
18
#include "
AthenaBaseComps/AthReentrantAlgorithm.h
"
19
#include "
StoreGate/WriteHandleKey.h
"
20
21
22
namespace
DMTest
{
23
24
28
class
xAODTestWritePVec
29
:
public
AthReentrantAlgorithm
30
{
31
public
:
32
using
AthReentrantAlgorithm::AthReentrantAlgorithm;
33
34
38
virtual
StatusCode
initialize
()
override
;
39
40
44
virtual
StatusCode
execute
(
const
EventContext& ctx)
const override
;
45
46
47
private
:
48
SG::WriteHandleKey<DMTest::PVec>
m_pvecKey
49
{
this
,
"PVecKey"
,
"pvec"
, };
50
};
51
52
53
}
// namespace DMTest
54
55
56
#endif // not DATAMODELTESTDATACOMMON_XAODTESTWRITEPVEC_H
DMTest::xAODTestWritePVec
Algorithm to test writing xAOD data with packed containers.
Definition:
xAODTestWritePVec.h:30
PVec.h
Class used for testing xAOD data reading/writing with packed containers.
AthReentrantAlgorithm
An algorithm that can be simultaneously executed in multiple threads.
Definition:
AthReentrantAlgorithm.h:74
SG::WriteHandleKey
Property holding a SG store/key/clid from which a WriteHandle is made.
Definition:
StoreGate/StoreGate/WriteHandleKey.h:40
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
DMTest::xAODTestWritePVec::initialize
virtual StatusCode initialize() override
Algorithm initialization; called at the beginning of the job.
Definition:
xAODTestWritePVec.cxx:36
AthReentrantAlgorithm.h
WriteHandleKey.h
Property holding a SG store/key/clid from which a WriteHandle is made.
DMTest::xAODTestWritePVec::execute
virtual StatusCode execute(const EventContext &ctx) const override
Algorithm event processing.
Definition:
xAODTestWritePVec.cxx:46
DMTest::xAODTestWritePVec::m_pvecKey
SG::WriteHandleKey< DMTest::PVec > m_pvecKey
Definition:
xAODTestWritePVec.h:49
DMTest
Definition:
B.h:23
Generated on Tue May 13 2025 21:22:48 for ATLAS Offline Software by
1.8.18