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
DerivationFramework
DerivationFrameworkBPhys
DerivationFrameworkBPhys
AnyVertexSkimmingTool.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 DERIVATIONFRAMEWORKBPHY_ANYVERTEXSKIMMINGTOOL_H
6
#define DERIVATIONFRAMEWORKBPHY_ANYVERTEXSKIMMINGTOOL_H
7
#include "
AthenaBaseComps/AthAlgTool.h
"
8
#include "
DerivationFrameworkInterfaces/ISkimmingTool.h
"
9
#include "
xAODTracking/VertexContainerFwd.h
"
10
#include <vector>
11
//*This class is written as a stop gap because the standard expression parser isn't working with the cascade vertices
12
//***When this is resolved it can be deleted
13
14
namespace
DerivationFramework
{
15
class
AnyVertexSkimmingTool
:
public
extends<AthAlgTool, ISkimmingTool>{
16
public
:
17
AnyVertexSkimmingTool
(
const
std::string&,
const
std::string&,
const
IInterface*);
18
StatusCode
initialize
()
override
;
19
virtual
bool
eventPassesFilter
()
const override
;
20
~AnyVertexSkimmingTool
();
21
private
:
22
Gaudi::Property<std::vector<std::string>>
m_containerNames
{
this
,
"VertexContainerNames"
, {} };
23
SG::ReadHandleKeyArray<xAOD::VertexContainer>
m_keyArray
{
this
,
"ReadHandles"
, {} };
24
Gaudi::Property<bool>
m_useHandles
{
this
,
"UseHandles"
,
false
};
25
};
26
}
27
28
#endif
VertexContainerFwd.h
DerivationFramework::AnyVertexSkimmingTool::initialize
StatusCode initialize() override
Definition:
AnyVertexSkimmingTool.cxx:16
DerivationFramework::AnyVertexSkimmingTool::m_useHandles
Gaudi::Property< bool > m_useHandles
Definition:
AnyVertexSkimmingTool.h:24
SG::HandleKeyArray
Definition:
StoreGate/StoreGate/HandleKeyArray.h:38
DerivationFramework::AnyVertexSkimmingTool
Definition:
AnyVertexSkimmingTool.h:15
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
AthAlgTool.h
DerivationFramework
THE reconstruction tool.
Definition:
ParticleSortingAlg.h:24
DerivationFramework::AnyVertexSkimmingTool::eventPassesFilter
virtual bool eventPassesFilter() const override
Definition:
AnyVertexSkimmingTool.cxx:22
DerivationFramework::AnyVertexSkimmingTool::m_containerNames
Gaudi::Property< std::vector< std::string > > m_containerNames
Definition:
AnyVertexSkimmingTool.h:22
DerivationFramework::AnyVertexSkimmingTool::m_keyArray
SG::ReadHandleKeyArray< xAOD::VertexContainer > m_keyArray
Definition:
AnyVertexSkimmingTool.h:23
DerivationFramework::AnyVertexSkimmingTool::AnyVertexSkimmingTool
AnyVertexSkimmingTool(const std::string &, const std::string &, const IInterface *)
Definition:
AnyVertexSkimmingTool.cxx:11
DerivationFramework::AnyVertexSkimmingTool::~AnyVertexSkimmingTool
~AnyVertexSkimmingTool()
ISkimmingTool.h
Generated on Tue Apr 22 2025 21:07:10 for ATLAS Offline Software by
1.8.18