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
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
InnerDetector
InDetRawAlgs
InDetOverlay
InDetOverlay
PixelOverlay.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef INDETOVERLAY_PIXELOVERLAY_H
6
#define INDETOVERLAY_PIXELOVERLAY_H
7
8
#include "
IDC_OverlayBase/IDC_OverlayBase.h
"
9
#include "
InDetRawData/PixelRDO_Container.h
"
10
11
class
PixelOverlay
:
public
IDC_OverlayBase
12
{
13
public
:
14
15
PixelOverlay
(
const
std::string &
name
, ISvcLocator *pSvcLocator);
16
17
virtual
StatusCode
initialize
()
override
final
;
18
virtual
StatusCode
execute
(
const
EventContext& ctx)
const
override
final
;
19
20
private
:
21
SG::ReadHandleKey<PixelRDO_Container>
m_bkgInputKey
{
this
,
"BkgInputKey"
,
"Bkg_PixelRDOs"
,
"ReadHandleKey for Background Input PixelRDO_Container"
};
22
SG::ReadHandleKey<PixelRDO_Container>
m_signalInputKey
{
this
,
"SignalInputKey"
,
"Sig_PixelRDOs"
,
"ReadHandleKey for Signal Input PixelRDO_Container"
};
23
SG::WriteHandleKey<PixelRDO_Container>
m_outputKey
{
this
,
"OutputKey"
,
"PixelRDOs"
,
"WriteHandleKey for Output PixelRDO_Container"
};
24
};
25
26
#endif // INDETOVERLAY_PIXELOVERLAY_H
PixelOverlay
Definition:
PixelOverlay.h:12
SG::ReadHandleKey< PixelRDO_Container >
PixelOverlay::m_outputKey
SG::WriteHandleKey< PixelRDO_Container > m_outputKey
Definition:
PixelOverlay.h:23
PixelOverlay::initialize
virtual StatusCode initialize() override final
Definition:
PixelOverlay.cxx:53
PixelOverlay::m_signalInputKey
SG::ReadHandleKey< PixelRDO_Container > m_signalInputKey
Definition:
PixelOverlay.h:22
SG::WriteHandleKey< PixelRDO_Container >
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
PixelOverlay::m_bkgInputKey
SG::ReadHandleKey< PixelRDO_Container > m_bkgInputKey
Definition:
PixelOverlay.h:21
PixelOverlay::execute
virtual StatusCode execute(const EventContext &ctx) const override final
Definition:
PixelOverlay.cxx:68
IDC_OverlayBase.h
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:240
PixelRDO_Container.h
IDC_OverlayBase
Definition:
IDC_OverlayBase.h:25
PixelOverlay::PixelOverlay
PixelOverlay(const std::string &name, ISvcLocator *pSvcLocator)
Definition:
PixelOverlay.cxx:48
Generated on Wed May 7 2025 21:16:00 for ATLAS Offline Software by
1.8.18