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
InnerDetector
InDetRecTools
ZWindowRoISeedTool
ZWindowRoISeedTool
FileRoISeedTool.h
Go to the documentation of this file.
1
// -*- C++ -*-
2
3
/*
4
Copyright (C) 2020-2023 CERN for the benefit of the ATLAS collaboration
5
*/
6
8
// (c) ATLAS Detector software
10
// Class for Z-window RoI from an input file
12
13
#ifndef SiSpacePointsSeedTool_xk_FileRoISeedTool_h
14
#define SiSpacePointsSeedTool_xk_FileRoISeedTool_h
15
16
#include "
InDetRecToolInterfaces/IZWindowRoISeedTool.h
"
17
#include "GaudiKernel/EventContext.h"
18
#include "
AthenaBaseComps/AthAlgTool.h
"
19
#include "
xAODEventInfo/EventInfo.h
"
20
21
#include <string>
22
#include <vector>
23
24
25
namespace
InDet
{
26
27
class
FileRoISeedTool
final
:
28
public
extends<AthAlgTool, IZWindowRoISeedTool>
29
{
30
32
// Public methods:
34
35
public
:
36
40
41
FileRoISeedTool
(
const
std::string&,
const
std::string&,
const
IInterface*);
42
virtual
~FileRoISeedTool
() =
default
;
43
virtual
StatusCode
initialize
()
override
;
45
51
virtual
std::vector<ZWindow>
getRoIs
(
const
EventContext& ctx)
const override
;
52
53
protected
:
54
56
FileRoISeedTool
() =
delete
;
57
FileRoISeedTool
(
const
FileRoISeedTool
&) =
delete
;
58
FileRoISeedTool
&
operator=
(
const
FileRoISeedTool
&) =
delete
;
59
63
64
StringProperty
m_filename
{
this
,
"InputFileName"
,
""
,
"Input file MUST be specified with LowPtRoIFile job option"
};
65
FloatProperty
m_z0Window
{
this
,
"TrackZ0Window"
, 30.0,
"Size of RoI along z-axis"
};
66
67
SG::ReadHandleKey<xAOD::EventInfo>
m_eventInfoKey
{
this
,
"EventInfoKey"
,
"EventInfo"
,
"xAOD EventInfo object"
};
69
70
};
// FileRoISeedTool
71
}
//InDet namespace
72
73
#endif // SiSpacePointsSeedMaker_FileRoISeedTool
74
InDet
Primary Vertex Finder.
Definition:
VP1ErrorUtils.h:36
InDet::FileRoISeedTool::m_z0Window
FloatProperty m_z0Window
Definition:
FileRoISeedTool.h:65
SG::ReadHandleKey< xAOD::EventInfo >
InDet::FileRoISeedTool::operator=
FileRoISeedTool & operator=(const FileRoISeedTool &)=delete
InDet::FileRoISeedTool
Definition:
FileRoISeedTool.h:29
InDet::FileRoISeedTool::initialize
virtual StatusCode initialize() override
Definition:
FileRoISeedTool.cxx:36
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
InDet::FileRoISeedTool::~FileRoISeedTool
virtual ~FileRoISeedTool()=default
AthAlgTool.h
InDet::FileRoISeedTool::FileRoISeedTool
FileRoISeedTool()=delete
InDet::FileRoISeedTool::FileRoISeedTool
FileRoISeedTool(const FileRoISeedTool &)=delete
columnar::final
CM final
Definition:
ColumnAccessor.h:106
InDet::FileRoISeedTool::getRoIs
virtual std::vector< ZWindow > getRoIs(const EventContext &ctx) const override
Compute RoI.
Definition:
FileRoISeedTool.cxx:53
EventInfo.h
InDet::FileRoISeedTool::m_eventInfoKey
SG::ReadHandleKey< xAOD::EventInfo > m_eventInfoKey
Definition:
FileRoISeedTool.h:67
InDet::FileRoISeedTool::m_filename
StringProperty m_filename
Definition:
FileRoISeedTool.h:64
IZWindowRoISeedTool.h
Generated on Tue Mar 25 2025 21:10:44 for ATLAS Offline Software by
1.8.18