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
TrigHypothesis
TrigHLTJetHypo
src
TrigJetCRVARHypoAlg.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
3
4
*/
5
6
#ifndef TrigHLTJetHypo_TrigJetCRVARHypoAlg_H
7
#define TrigHLTJetHypo_TrigJetCRVARHypoAlg_H
8
9
#include <string>
10
11
#include "
AthenaBaseComps/AthReentrantAlgorithm.h
"
12
#include "
xAODJet/JetContainer.h
"
13
#include "
xAODTracking/VertexContainer.h
"
14
#include "
CaloEvent/CaloConstCellContainer.h
"
15
16
#include "
DecisionHandling/HypoBase.h
"
17
18
#include "
TrigJetCRVARHypoTool.h
"
19
27
class
TrigJetCRVARHypoAlg
:
public
::HypoBase
{
28
public
:
29
30
TrigJetCRVARHypoAlg
(
const
std::string&
name
, ISvcLocator* pSvcLocator );
31
32
virtual
StatusCode
initialize
()
override
;
33
virtual
StatusCode
execute
(
const
EventContext& context )
const override
;
34
35
private
:
36
ToolHandleArray< TrigJetCRVARHypoTool >
m_hypoTools
{
this
,
37
"HypoTools"
,
38
{},
39
"Tools to perfrom selection"
};
40
41
SG::ReadHandleKey<CaloConstCellContainer>
m_cellKey
{
this
,
42
"Cells"
,
"Key for input CaloCellContainer"
};
43
44
};
45
46
#endif
TrigJetCRVARHypoTool.h
SG::ReadHandleKey< CaloConstCellContainer >
TrigJetCRVARHypoAlg
HypoAlg for low-EMF trackless jets algorithm.
Definition:
TrigJetCRVARHypoAlg.h:27
TrigJetCRVARHypoAlg::execute
virtual StatusCode execute(const EventContext &context) const override
Definition:
TrigJetCRVARHypoAlg.cxx:27
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
TrigJetCRVARHypoAlg::m_cellKey
SG::ReadHandleKey< CaloConstCellContainer > m_cellKey
Definition:
TrigJetCRVARHypoAlg.h:41
AthReentrantAlgorithm.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
VertexContainer.h
JetContainer.h
HypoBase.h
TrigJetCRVARHypoAlg::TrigJetCRVARHypoAlg
TrigJetCRVARHypoAlg(const std::string &name, ISvcLocator *pSvcLocator)
Definition:
TrigJetCRVARHypoAlg.cxx:13
CaloConstCellContainer.h
CaloCellContainer that can accept const cell pointers.
TrigJetCRVARHypoAlg::initialize
virtual StatusCode initialize() override
Definition:
TrigJetCRVARHypoAlg.cxx:18
TrigJetCRVARHypoAlg::m_hypoTools
ToolHandleArray< TrigJetCRVARHypoTool > m_hypoTools
Definition:
TrigJetCRVARHypoAlg.h:36
Generated on Sun Mar 23 2025 21:21:36 for ATLAS Offline Software by
1.8.18