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
MuonCalib
MdtCalib
MdtCalibUtils
MdtCalibUtils
SimpleMdtSegmentSelector.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3
*/
4
6
// SimpleMdtSegmentSelector.h
7
// Header file for class SimpleMdtSegmentSelector
9
// (c) ATLAS Detector software
11
// nveldik@nikhef.nl
13
14
#ifndef MUONCALIB_SIMPLEMDTSEGMENTSELECTOR_H
15
#define MUONCALIB_SIMPLEMDTSEGMENTSELECTOR_H
16
17
#include "
MdtCalibInterfaces/IMdtSegmentSelector.h
"
18
19
namespace
MuonCalib
{
20
21
class
MuonCalibSegment;
22
35
class
SimpleMdtSegmentSelector
:
public
IMdtSegmentSelector
{
36
public
:
38
SimpleMdtSegmentSelector
(
double
chi2_max,
unsigned
int
hits_min);
39
41
virtual
bool
select
(
const
MuonCalibSegment
& seg)
const
;
42
44
void
setPrintLevel
(
int
level
) {
m_printLevel
=
level
; }
45
46
private
:
48
double
m_chi2_max
;
49
unsigned
int
m_hits_min
;
50
52
int
m_printLevel
;
53
};
54
55
}
// namespace MuonCalib
56
57
#endif
MuonCalib::IMdtSegmentSelector
Definition:
IMdtSegmentSelector.h:26
MuonCalib::SimpleMdtSegmentSelector
Definition:
SimpleMdtSegmentSelector.h:35
MuonCalib::MuonCalibSegment
Definition:
MuonCalibSegment.h:39
MuonCalib::SimpleMdtSegmentSelector::m_printLevel
int m_printLevel
print level
Definition:
SimpleMdtSegmentSelector.h:52
python.iconfTool.models.loaders.level
level
Definition:
loaders.py:20
MuonCalib::SimpleMdtSegmentSelector::m_hits_min
unsigned int m_hits_min
minimum numbers of hits on segment
Definition:
SimpleMdtSegmentSelector.h:49
MuonCalib::SimpleMdtSegmentSelector::setPrintLevel
void setPrintLevel(int level)
set print level
Definition:
SimpleMdtSegmentSelector.h:44
IMdtSegmentSelector.h
MuonCalib
CscCalcPed - algorithm that finds the Cathode Strip Chamber pedestals from an RDO.
Definition:
CscCalcPed.cxx:22
MuonCalib::SimpleMdtSegmentSelector::SimpleMdtSegmentSelector
SimpleMdtSegmentSelector(double chi2_max, unsigned int hits_min)
constructor
Definition:
SimpleMdtSegmentSelector.cxx:15
MuonCalib::SimpleMdtSegmentSelector::m_chi2_max
double m_chi2_max
selection criteria
Definition:
SimpleMdtSegmentSelector.h:48
MuonCalib::SimpleMdtSegmentSelector::select
virtual bool select(const MuonCalibSegment &seg) const
test MdtSegment on selection criteria
Definition:
SimpleMdtSegmentSelector.cxx:26
Generated on Sun Jan 12 2025 21:18:01 for ATLAS Offline Software by
1.8.18