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
TrigConfiguration
TrigConfMuctpi
TrigConfMuctpi
L1MuonPtEncoding.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 TrigConf_L1MuonPtEncoding
6
#define TrigConf_L1MuonPtEncoding
7
8
#include <iostream>
9
10
class
L1MuonPtEncoding
{
11
public
:
12
// constructor
13
L1MuonPtEncoding
() =
default
;
14
15
void
setCodingInfo
(
unsigned
int
idx
,
unsigned
int
ptCode,
unsigned
int
thresholdValue );
16
17
void
getCodingInfo
(
unsigned
int
idx
,
unsigned
int
& ptCode,
unsigned
int
& thresholdValue )
const
;
18
19
void
print
(
const
std::string&
indent
=
""
,
unsigned
int
detail
=1)
const
;
20
21
void
writeXML
(std::ostream & xmlfile,
int
indentLevel=0,
int
indentWidth=2)
const
;
22
23
private
:
24
struct
code
{
25
unsigned
int
ptCode
{0};
// encoding for topo
26
unsigned
int
thresholdValue
{0};
// muon pt threshold
27
};
28
29
code
m_encoding
[6];
30
31
};
32
33
#endif
L1MuonPtEncoding::m_encoding
code m_encoding[6]
Definition:
L1MuonPtEncoding.h:29
L1MuonPtEncoding::setCodingInfo
void setCodingInfo(unsigned int idx, unsigned int ptCode, unsigned int thresholdValue)
Definition:
L1MuonPtEncoding.cxx:13
L1MuonPtEncoding::code::thresholdValue
unsigned int thresholdValue
Definition:
L1MuonPtEncoding.h:26
L1MuonPtEncoding::L1MuonPtEncoding
L1MuonPtEncoding()=default
detail
Definition:
extract_histogram_tag.cxx:14
L1MuonPtEncoding::print
void print(const std::string &indent="", unsigned int detail=1) const
Definition:
L1MuonPtEncoding.cxx:27
L1MuonPtEncoding::writeXML
void writeXML(std::ostream &xmlfile, int indentLevel=0, int indentWidth=2) const
Definition:
L1MuonPtEncoding.cxx:37
L1MuonPtEncoding
Definition:
L1MuonPtEncoding.h:10
geometry_dat_to_json.indent
indent
Definition:
geometry_dat_to_json.py:37
L1MuonPtEncoding::code
Definition:
L1MuonPtEncoding.h:24
L1MuonPtEncoding::code::ptCode
unsigned int ptCode
Definition:
L1MuonPtEncoding.h:25
LArNewCalib_DelayDump_OFC_Cali.idx
idx
Definition:
LArNewCalib_DelayDump_OFC_Cali.py:69
L1MuonPtEncoding::getCodingInfo
void getCodingInfo(unsigned int idx, unsigned int &ptCode, unsigned int &thresholdValue) const
Definition:
L1MuonPtEncoding.cxx:20
Generated on Mon May 12 2025 21:12:35 for ATLAS Offline Software by
1.8.18