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
PhysicsAnalysis
Interfaces
EgammaAnalysisInterfaces
EgammaAnalysisInterfaces
IElectronLRTOverlapRemovalTool.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef IELECTRONLRTOVERLAPREMOVALTOOL__H
6
#define IELECTRONLRTOVERLAPREMOVALTOOL__H
7
8
// C++ include(s):
9
#include <set>
10
11
// Framework include(s):
12
#include "
AsgTools/IAsgTool.h
"
13
14
// EDM include(s):
15
#include "
xAODEgamma/Electron.h
"
16
#include "
xAODEgamma/ElectronContainer.h
"
17
18
// Local include(s):
19
24
namespace
CP
25
{
26
27
class
IElectronLRTOverlapRemovalTool
:
public
virtual
asg::IAsgTool
28
{
34
35
ASG_TOOL_INTERFACE
(
CP::IElectronLRTOverlapRemovalTool
)
36
37
public
:
39
// default strategy: Discard the electron with the looser ID in the case of a shared
40
// cluster. in the case of a 'tie', choose the standard electron.
41
// prompt strategy: Require electrons to pass VeryLooseNoPix ID WP. For those passing,
42
// discard those from the LRT collection that share a cluster
43
// with the standard collection
44
// removeFailing strategy: Remove electrons failing ID, but don't do overlap removal
45
// on electrons that share clusters. NOT FOR ANALYSIS, for validation
46
// purposes only
47
typedef
enum
48
{
49
defaultStrategy
= 0,
50
promptStrategy
= 1,
51
passThrough
= 2
52
}
overlapStrategy
;
53
56
virtual
void
checkOverlap
(
const
xAOD::ElectronContainer
&promptCollection,
57
const
xAOD::ElectronContainer
&lrtCollection,
58
std::set<const xAOD::Electron *> &ElectronsToRemove)
const
= 0;
59
};
60
// class IElectronLRTOverlapRemovalTool
61
62
}
// namespace CP
63
64
#endif
/* IELECTRONLRTOVERLAPREMOVALTOOL__H */
CP::IElectronLRTOverlapRemovalTool::promptStrategy
@ promptStrategy
Definition:
IElectronLRTOverlapRemovalTool.h:50
CP::IElectronLRTOverlapRemovalTool::defaultStrategy
@ defaultStrategy
Definition:
IElectronLRTOverlapRemovalTool.h:49
CP::IElectronLRTOverlapRemovalTool::overlapStrategy
overlapStrategy
Allow to specify a number of supported overlap removal strategies.
Definition:
IElectronLRTOverlapRemovalTool.h:48
asg::IAsgTool
Base class for the dual-use tool interface classes.
Definition:
IAsgTool.h:41
CP
Select isolated Photons, Electrons and Muons.
Definition:
Control/xAODRootAccess/xAODRootAccess/TEvent.h:49
ElectronContainer.h
ASG_TOOL_INTERFACE
#define ASG_TOOL_INTERFACE(CLASSNAME)
Definition:
AsgToolMacros.h:40
IAsgTool.h
DataVector
Derived DataVector<T>.
Definition:
DataVector.h:794
CP::IElectronLRTOverlapRemovalTool::checkOverlap
virtual void checkOverlap(const xAOD::ElectronContainer &promptCollection, const xAOD::ElectronContainer &lrtCollection, std::set< const xAOD::Electron * > &ElectronsToRemove) const =0
Check the overlap between the prompt and LRT electron collections.
Electron.h
CP::IElectronLRTOverlapRemovalTool::passThrough
@ passThrough
Definition:
IElectronLRTOverlapRemovalTool.h:51
CP::IElectronLRTOverlapRemovalTool
Definition:
IElectronLRTOverlapRemovalTool.h:28
Generated on Fri Mar 28 2025 21:11:43 for ATLAS Offline Software by
1.8.18