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
w
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
TrigT1
Muon
L0MuonInterface
L0MuonInterface
BarrelCandData.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3
*/
4
#ifndef L0MuonInterface_BARRELCANDDATA_H
5
#define L0MuonInterface_BARRELCANDDATA_H
6
7
#include "
L0MuonInterface/ICandData.h
"
8
9
namespace
L0Muon
10
{
11
12
class
BarrelCandData
:
public
ICandData
13
{
14
public
:
15
// default constructor
16
BarrelCandData
() =
default
;
17
~BarrelCandData
() =
default
;
18
19
BarrelCandData
(
uint16_t
subdetectorId
,
uint16_t
sectorId
,
uint16_t
bcTag
);
21
enum class
Quality
22
{
23
Q_UNDEFINED
= 0,
24
Q_BEST
,
25
Q_LOW
26
};
27
Quality
quality
()
const
{
return
m_quality
; }
28
void
setQuality
(
Quality
quality
) {
m_quality
=
quality
; }
29
30
private
:
32
Quality
m_quality
{0};
33
};
34
35
}
// namespace L0Muon
36
37
#endif // L0MuonInterface_BARRELCANDDATA_H
L0Muon::BarrelCandData::quality
Quality quality() const
Definition:
BarrelCandData.h:27
L0Muon::ICandData::subdetectorId
uint16_t subdetectorId() const
Definition:
ICandData.h:23
L0Muon::BarrelCandData
Definition:
BarrelCandData.h:13
L0Muon::BarrelCandData::Quality::Q_BEST
@ Q_BEST
L0Muon::ICandData::sectorId
uint16_t sectorId() const
Definition:
ICandData.h:24
L0Muon::BarrelCandData::Quality::Q_LOW
@ Q_LOW
L0Muon::BarrelCandData::BarrelCandData
BarrelCandData()=default
L0Muon::BarrelCandData::~BarrelCandData
~BarrelCandData()=default
L0Muon::ICandData
Definition:
ICandData.h:14
L0Muon
Definition:
L0MuonSmearingAlg.cxx:13
ICandData.h
xAOD::uint16_t
setWord1 uint16_t
Definition:
eFexEMRoI_v1.cxx:93
L0Muon::BarrelCandData::setQuality
void setQuality(Quality quality)
Definition:
BarrelCandData.h:28
L0Muon::ICandData::bcTag
uint16_t bcTag() const
Definition:
ICandData.h:25
L0Muon::BarrelCandData::Quality
Quality
quality of the candidate
Definition:
BarrelCandData.h:22
L0Muon::BarrelCandData::m_quality
Quality m_quality
quality of the candidate
Definition:
BarrelCandData.h:32
L0Muon::BarrelCandData::Quality::Q_UNDEFINED
@ Q_UNDEFINED
Generated on Fri May 9 2025 21:06:45 for ATLAS Offline Software by
1.8.18