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
InDetRecToolInterfaces
InDetRecToolInterfaces
IZWindowRoISeedTool.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
3
*/
4
6
// (c) ATLAS Detector software
8
// Class for Z-window(s) RoI tool
10
11
#ifndef InDetRecToolInterfaces_IZWindowRoISeedTool_H
12
#define InDetRecToolInterfaces_IZWindowRoISeedTool_H
13
14
#include "GaudiKernel/IAlgTool.h"
15
16
17
#include <vector>
18
19
class
EventContext;
20
21
namespace
InDet
22
{
23
24
static
const
InterfaceID IID_IZWindowRoISeedTool(
"IZWindowRoISeedTool"
, 1, 0);
25
33
class
IZWindowRoISeedTool
:
virtual
public
IAlgTool
34
{
35
public
:
36
38
39
DeclareInterfaceID
(
IZWindowRoISeedTool
, 1, 0);
41
45
46
class
ZWindow
{
47
public
:
48
//* Lower and Upper z bound of the window */
49
float
zWindow
[2] = {-999., -999.};
50
//* Reference z-position (if any) */
51
float
zReference
= {-999.};
52
//* The perigee z-positions of the tracks (if any) */
53
float
zPerigeePos
[2] = {-999., -999.};
54
55
//* Constructor setting default values */
56
ZWindow
() =
default
;
57
58
~ZWindow
() =
default
;
59
};
60
61
/*** @brief Compute RoI z-window(s) */
62
virtual
std::vector<ZWindow>
getRoIs
(
const
EventContext& ctx)
const
= 0;
63
65
66
};
// End of IZWindowRoISeedTool class definition
67
68
69
}
// End of namespace InDet
70
#endif
InDet
Primary Vertex Finder.
Definition:
VP1ErrorUtils.h:36
InDet::IZWindowRoISeedTool::getRoIs
virtual std::vector< ZWindow > getRoIs(const EventContext &ctx) const =0
InDet::IZWindowRoISeedTool
Definition:
IZWindowRoISeedTool.h:34
InDet::IZWindowRoISeedTool::ZWindow::ZWindow
ZWindow()=default
InDet::IZWindowRoISeedTool::ZWindow
Definition:
IZWindowRoISeedTool.h:46
InDet::IZWindowRoISeedTool::ZWindow::zPerigeePos
float zPerigeePos[2]
Definition:
IZWindowRoISeedTool.h:53
InDet::IZWindowRoISeedTool::ZWindow::zWindow
float zWindow[2]
Definition:
IZWindowRoISeedTool.h:49
InDet::IZWindowRoISeedTool::ZWindow::zReference
float zReference
Definition:
IZWindowRoISeedTool.h:51
InDet::IZWindowRoISeedTool::ZWindow::~ZWindow
~ZWindow()=default
InDet::IZWindowRoISeedTool::DeclareInterfaceID
DeclareInterfaceID(IZWindowRoISeedTool, 1, 0)
Generated on Sun Mar 23 2025 21:12:28 for ATLAS Offline Software by
1.8.18