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
TrigStreamerHypo
src
TrigStreamerHypoAlg.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
3
*/
4
#ifndef TRIGSTREAMERHYPO_TRIGSTREAMERHYPOALG_H
5
#define TRIGSTREAMERHYPO_TRIGSTREAMERHYPOALG_H
6
7
#include <string>
8
9
#include "
AthenaBaseComps/AthReentrantAlgorithm.h
"
10
#include "
DecisionHandling/HypoBase.h
"
11
12
#include "
ITrigStreamerHypoTool.h
"
13
18
class
TrigStreamerHypoAlg
:
public
::HypoBase
{
19
public
:
20
21
TrigStreamerHypoAlg
(
const
std::string&
name
, ISvcLocator* pSvcLocator );
22
23
virtual
StatusCode
initialize
()
override
;
24
virtual
StatusCode
execute
(
const
EventContext& context )
const override
;
25
26
private
:
27
28
ToolHandleArray<ITrigStreamerHypoTool>
m_hypoTools
{
29
this
,
"HypoTools"
, {},
"Hypo tools"
};
30
31
Gaudi::Property<bool>
m_featureIsROI
{
this
,
"FeatureIsROI"
,
true
,
"If the Streamer alg should re-use the initialRoI as the 'feature'. Will re-use the previous step's feature if false"
};
32
};
33
34
#endif
35
TrigStreamerHypoAlg::initialize
virtual StatusCode initialize() override
Definition:
TrigStreamerHypoAlg.cxx:18
TrigStreamerHypoAlg::m_featureIsROI
Gaudi::Property< bool > m_featureIsROI
Definition:
TrigStreamerHypoAlg.h:31
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
TrigStreamerHypoAlg::m_hypoTools
ToolHandleArray< ITrigStreamerHypoTool > m_hypoTools
Definition:
TrigStreamerHypoAlg.h:28
TrigStreamerHypoAlg::TrigStreamerHypoAlg
TrigStreamerHypoAlg(const std::string &name, ISvcLocator *pSvcLocator)
Definition:
TrigStreamerHypoAlg.cxx:13
AthReentrantAlgorithm.h
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:240
HypoBase
Hypothesis algorithms take the output of reco algorithms and the decision from the preceeding InputMa...
Definition:
HypoBase.h:13
TrigStreamerHypoAlg::execute
virtual StatusCode execute(const EventContext &context) const override
Definition:
TrigStreamerHypoAlg.cxx:24
TrigStreamerHypoAlg
Implements a streamer (aka no selection) for the HLT framework.
Definition:
TrigStreamerHypoAlg.h:18
ITrigStreamerHypoTool.h
HypoBase.h
Generated on Tue Apr 1 2025 21:21:50 for ATLAS Offline Software by
1.8.18