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
MuonSpectrometer
MuonReconstruction
MuonRecUtils
MuonLayerHough
MuonLayerHough
MuonLayerHoughSelector.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef MUONLAYERHOUGH_MUONLAYERHOUGHSELECTOR_H
6
#define MUONLAYERHOUGH_MUONLAYERHOUGHSELECTOR_H
7
8
#include <vector>
9
#include <utility>
//for std::pair
10
11
namespace
MuonHough
{
12
class
MuonLayerHoughSelector
{
13
public
:
15
MuonLayerHoughSelector
() =
default
;
16
MuonLayerHoughSelector
(
const
MuonLayerHoughSelector
&) =
default
;
17
MuonLayerHoughSelector
(
MuonLayerHoughSelector
&&) =
default
;
18
MuonLayerHoughSelector
&
operator=
(
MuonLayerHoughSelector
&&) =
default
;
19
MuonLayerHoughSelector
&
operator=
(
const
MuonLayerHoughSelector
&) =
default
;
20
MuonLayerHoughSelector
(std::vector<std::pair<int, float>> cutValues);
21
23
virtual
~MuonLayerHoughSelector
();
24
26
float
getCutValue
(
float
pos
)
const
;
27
float
getMinCutValue
()
const
;
28
bool
passesCutValue
(
float
testValue,
float
position)
const
;
29
30
private
:
31
std::vector<std::pair<int, float>>
m_cutValues
;
32
};
33
34
}
// namespace MuonHough
35
#endif
MuonHough::MuonLayerHoughSelector::MuonLayerHoughSelector
MuonLayerHoughSelector(MuonLayerHoughSelector &&)=default
MuonHough::MuonLayerHoughSelector::m_cutValues
std::vector< std::pair< int, float > > m_cutValues
Definition:
MuonLayerHoughSelector.h:31
MuonHough::MuonLayerHoughSelector
Definition:
MuonLayerHoughSelector.h:12
MuonHough
Definition:
MuonLayerHoughTool.h:40
MuonHough::MuonLayerHoughSelector::getMinCutValue
float getMinCutValue() const
Definition:
MuonLayerHoughSelector.cxx:35
MuonHough::MuonLayerHoughSelector::passesCutValue
bool passesCutValue(float testValue, float position) const
Definition:
MuonLayerHoughSelector.cxx:43
python.LumiBlobConversion.pos
pos
Definition:
LumiBlobConversion.py:18
MuonHough::MuonLayerHoughSelector::MuonLayerHoughSelector
MuonLayerHoughSelector(const MuonLayerHoughSelector &)=default
MuonHough::MuonLayerHoughSelector::operator=
MuonLayerHoughSelector & operator=(MuonLayerHoughSelector &&)=default
MuonHough::MuonLayerHoughSelector::~MuonLayerHoughSelector
virtual ~MuonLayerHoughSelector()
Destructor.
MuonHough::MuonLayerHoughSelector::MuonLayerHoughSelector
MuonLayerHoughSelector()=default
Default constructor.
MuonHough::MuonLayerHoughSelector::getCutValue
float getCutValue(float pos) const
Getter Methods.
Definition:
MuonLayerHoughSelector.cxx:27
Generated on Tue Apr 22 2025 21:15:39 for ATLAS Offline Software by
1.8.18