Loading [MathJax]/jax/input/TeX/config.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
TrigHypothesis
TrigLongLivedParticlesHypo
src
DisplacedJetDispHypoAlg.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3
*/
4
#ifndef TRIGDJDISPHYPOALG_H
5
#define TRIGDJDISPHYPOALG_H
6
7
// Framework includes
8
#include "
DecisionHandling/HypoBase.h
"
9
#include "
xAODTrigger/TrigCompositeContainer.h
"
10
#include "
DisplacedJetDispHypoTool.h
"
11
#include "
TrigCompositeUtils/TrigCompositeUtils.h
"
12
#include "
xAODTracking/TrackParticleContainer.h
"
13
#include "
xAODTracking/VertexContainer.h
"
14
#include "
xAODJet/JetContainer.h
"
15
#include "
AthenaMonitoringKernel/Monitored.h
"
16
#include <map>
17
#include "Gaudi/Property.h"
18
#include "
AthViews/View.h
"
19
20
// STL includes
21
#include <string>
22
class
DisplacedJetDispHypoAlg
:
public
::HypoBase
{
23
public
:
24
DisplacedJetDispHypoAlg
(
const
std::string&
name
, ISvcLocator* pSvcLocator);
25
26
virtual
~DisplacedJetDispHypoAlg
() =
default
;
27
virtual
StatusCode
initialize
()
override
;
28
virtual
StatusCode
execute
(
const
EventContext& context)
const override
;
29
30
private
:
31
DisplacedJetDispHypoAlg
();
32
ToolHandleArray< DisplacedJetDispHypoTool >
m_hypoTools
{
this
,
"HypoTools"
, {},
"Tools that perform actual selection"
};
33
SG::ReadHandleKey<xAOD::TrackParticleContainer>
m_lrtTracksKey
{
this
,
"lrtTracksKey"
,
"Undefined"
,
""
};
34
SG::ReadHandleKey<xAOD::VertexContainer>
m_vtxKey
{
this
,
"vtxKey"
,
"Undefined"
,
""
};
35
36
SG::ReadCondHandleKey<InDet::BeamSpotData>
m_beamSpotKey
{
this
,
"BeamSpotKey"
,
"BeamSpotData"
,
"SG key for beam spot"
};
37
};
38
#endif
DisplacedJetDispHypoAlg::DisplacedJetDispHypoAlg
DisplacedJetDispHypoAlg()
DisplacedJetDispHypoAlg::m_beamSpotKey
SG::ReadCondHandleKey< InDet::BeamSpotData > m_beamSpotKey
Definition:
DisplacedJetDispHypoAlg.h:36
DisplacedJetDispHypoAlg::m_vtxKey
SG::ReadHandleKey< xAOD::VertexContainer > m_vtxKey
Definition:
DisplacedJetDispHypoAlg.h:34
DisplacedJetDispHypoAlg::initialize
virtual StatusCode initialize() override
Definition:
DisplacedJetDispHypoAlg.cxx:28
SG::ReadHandleKey< xAOD::TrackParticleContainer >
DisplacedJetDispHypoAlg::m_lrtTracksKey
SG::ReadHandleKey< xAOD::TrackParticleContainer > m_lrtTracksKey
Definition:
DisplacedJetDispHypoAlg.h:33
DisplacedJetDispHypoAlg::m_hypoTools
ToolHandleArray< DisplacedJetDispHypoTool > m_hypoTools
Definition:
DisplacedJetDispHypoAlg.h:32
TrigCompositeUtils.h
DisplacedJetDispHypoAlg
Definition:
DisplacedJetDispHypoAlg.h:22
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
Monitored.h
Header file to be included by clients of the Monitored infrastructure.
TrigCompositeContainer.h
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:228
HypoBase
Hypothesis algorithms take the output of reco algorithms and the decision from the preceeding InputMa...
Definition:
HypoBase.h:13
SG::ReadCondHandleKey< InDet::BeamSpotData >
VertexContainer.h
JetContainer.h
HypoBase.h
DisplacedJetDispHypoAlg::execute
virtual StatusCode execute(const EventContext &context) const override
Definition:
DisplacedJetDispHypoAlg.cxx:39
View.h
DisplacedJetDispHypoAlg::~DisplacedJetDispHypoAlg
virtual ~DisplacedJetDispHypoAlg()=default
DisplacedJetDispHypoTool.h
TrackParticleContainer.h
Generated on Thu Mar 13 2025 21:09:39 for ATLAS Offline Software by
1.8.18