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
Trigger
TrigMonitoring
TrigEgammaMonitoring
src
egammaMonitorElectronAlgorithm.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef egammaMonitorElectronAlgorithm_H
6
#define egammaMonitorElectronAlgorithm_H
7
8
#include "
egammaMonitorBaseAlgorithm.h
"
9
10
#include "
StoreGate/ReadDecorHandleKeyArray.h
"
11
12
class
egammaMonitorElectronAlgorithm
:
public
egammaMonitorBaseAlgorithm
13
{
14
15
public
:
16
17
egammaMonitorElectronAlgorithm
(
const
std::string&
name
, ISvcLocator* pSvcLocator);
18
virtual
StatusCode
initialize
()
override
;
19
virtual
StatusCode
execute
(
const
EventContext& ctx)
const override
;
20
21
protected
:
22
23
void
filltopoElectronTrackCaloMatch
(
const
EventContext& ctx)
const
;
24
void
filltopoElectronShowerShapes
(
const
EventContext& ctx)
const
;
25
void
filltopoElectronIsolation
(
const
EventContext& ctx)
const
;
26
27
private
:
28
29
TString
m_baseName
;
30
SG::ReadHandleKey<xAOD::ElectronContainer>
m_electronsKey
{
this
,
"ElectronKey"
,
"Electrons"
,
""
};
31
SG::ReadDecorHandleKeyArray<xAOD::ElectronContainer>
m_isoKey
{
this
,
"IsoVarKeys"
, { },
"The list of isolation variables to be monitored"
};
32
ToolHandle<GenericMonitoringTool>
m_monTool
{
this
,
"MonTool"
,
""
,
"Monitoring tool"
};
33
};
34
35
36
37
#endif
egammaMonitorElectronAlgorithm::execute
virtual StatusCode execute(const EventContext &ctx) const override
Definition:
egammaMonitorElectronAlgorithm.cxx:23
egammaMonitorElectronAlgorithm::initialize
virtual StatusCode initialize() override
Definition:
egammaMonitorElectronAlgorithm.cxx:11
SG::HandleKeyArray
Definition:
StoreGate/StoreGate/HandleKeyArray.h:38
SG::ReadHandleKey< xAOD::ElectronContainer >
egammaMonitorElectronAlgorithm::m_electronsKey
SG::ReadHandleKey< xAOD::ElectronContainer > m_electronsKey
Definition:
egammaMonitorElectronAlgorithm.h:30
egammaMonitorElectronAlgorithm::filltopoElectronIsolation
void filltopoElectronIsolation(const EventContext &ctx) const
Definition:
egammaMonitorElectronAlgorithm.cxx:134
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
egammaMonitorElectronAlgorithm::m_isoKey
SG::ReadDecorHandleKeyArray< xAOD::ElectronContainer > m_isoKey
Definition:
egammaMonitorElectronAlgorithm.h:31
egammaMonitorElectronAlgorithm::filltopoElectronTrackCaloMatch
void filltopoElectronTrackCaloMatch(const EventContext &ctx) const
Definition:
egammaMonitorElectronAlgorithm.cxx:31
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:240
egammaMonitorElectronAlgorithm
Definition:
egammaMonitorElectronAlgorithm.h:13
egammaMonitorBaseAlgorithm
Definition:
egammaMonitorBaseAlgorithm.h:24
egammaMonitorElectronAlgorithm::m_monTool
ToolHandle< GenericMonitoringTool > m_monTool
Definition:
egammaMonitorElectronAlgorithm.h:32
egammaMonitorElectronAlgorithm::egammaMonitorElectronAlgorithm
egammaMonitorElectronAlgorithm(const std::string &name, ISvcLocator *pSvcLocator)
Definition:
egammaMonitorElectronAlgorithm.cxx:7
egammaMonitorBaseAlgorithm.h
ReadDecorHandleKeyArray.h
egammaMonitorElectronAlgorithm::filltopoElectronShowerShapes
void filltopoElectronShowerShapes(const EventContext &ctx) const
Definition:
egammaMonitorElectronAlgorithm.cxx:78
egammaMonitorElectronAlgorithm::m_baseName
TString m_baseName
Definition:
egammaMonitorElectronAlgorithm.h:29
Generated on Fri Apr 25 2025 21:10:02 for ATLAS Offline Software by
1.8.18