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
MuonSpectrometer
MuonOverlay
TgcOverlay
TgcOverlay
TgcOverlay.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
// Dear emacs, this is -*-c++-*-
6
7
// Overlaying TgcDigits from two different events for TGC subdetectors.
8
//
9
// Andrei Gaponenko <agaponenko@lbl.gov>, 2006, 2007
10
// Ketevi A. Assamagan <ketevi@bnl.gov>, March 2008
11
// Piyali Banerjee <Piyali.Banerjee@cern.ch>, March 2011
12
13
#ifndef TGCOVERLAY_H
14
#define TGCOVERLAY_H
15
16
#include <
MuonDigitContainer/TgcDigitContainer.h
>
17
#include <
MuonOverlayBase/IDC_MuonOverlayBase.h
>
18
19
20
class
TgcOverlay
:
public
IDC_MuonOverlayBase
21
{
22
public
:
23
24
TgcOverlay
(
const
std::string &
name
, ISvcLocator *pSvcLocator);
25
26
virtual
StatusCode
initialize
()
override
final
;
27
virtual
StatusCode
execute
(
const
EventContext& ctx)
const
override
final
;
28
29
private
:
30
SG::ReadHandleKey<TgcDigitContainer>
m_bkgInputKey
{
this
,
"BkgInputKey"
,
"Bkg_TGC_DIGITS"
,
"ReadHandleKey for Background Input TgcDigitContainer"
};
31
SG::ReadHandleKey<TgcDigitContainer>
m_signalInputKey
{
this
,
"SignalInputKey"
,
"Sig_TGC_DIGITS"
,
"ReadHandleKey for Signal Input TgcDigitContainer"
};
32
SG::WriteHandleKey<TgcDigitContainer>
m_outputKey
{
this
,
"OutputKey"
,
"TGC_DIGITS"
,
"WriteHandleKey for Output TgcDigitContainer"
};
33
34
};
35
36
#endif
/* TGCOVERLAY_H */
IDC_MuonOverlayBase.h
TgcOverlay::execute
virtual StatusCode execute(const EventContext &ctx) const override final
Definition:
TgcOverlay.cxx:39
TgcOverlay::m_signalInputKey
SG::ReadHandleKey< TgcDigitContainer > m_signalInputKey
Definition:
TgcOverlay.h:31
TgcOverlay::TgcOverlay
TgcOverlay(const std::string &name, ISvcLocator *pSvcLocator)
Definition:
TgcOverlay.cxx:18
TgcOverlay::m_outputKey
SG::WriteHandleKey< TgcDigitContainer > m_outputKey
Definition:
TgcOverlay.h:32
SG::ReadHandleKey< TgcDigitContainer >
SG::WriteHandleKey< TgcDigitContainer >
TgcOverlay::initialize
virtual StatusCode initialize() override final
Definition:
TgcOverlay.cxx:24
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
IDC_MuonOverlayBase
Definition:
IDC_MuonOverlayBase.h:27
TgcOverlay::m_bkgInputKey
SG::ReadHandleKey< TgcDigitContainer > m_bkgInputKey
Definition:
TgcOverlay.h:30
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:228
TgcOverlay
Definition:
TgcOverlay.h:21
TgcDigitContainer.h
Generated on Fri Mar 14 2025 21:19:56 for ATLAS Offline Software by
1.8.18