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
MuonRDO
MuonRDO
NSW_MMTP_RawDataHit.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef MUONRDO_NSW_MMTP_RAWDATAHIT_H
6
#define MUONRDO_NSW_MMTP_RAWDATAHIT_H
7
8
#include <inttypes.h>
9
#include <vector>
10
#include <iosfwd>
11
12
namespace
Muon
{
13
class
NSW_MMTP_RawDataHit
{
14
friend
class
NSW_MMTP_RawDataHitCnv_p1
;
15
public
:
16
NSW_MMTP_RawDataHit
(
uint16_t
art_BCID
,
uint8_t
art_layer
,
uint16_t
art_channel
);
17
virtual
~NSW_MMTP_RawDataHit
() =
default
;
18
19
uint16_t
art_BCID
()
const
{
return
m_art_BCID
;};
20
uint8_t
art_layer
()
const
{
return
m_art_layer
;};
21
uint16_t
art_channel
()
const
{
return
m_art_channel
;};
22
23
private
:
24
uint16_t
m_art_BCID
{0};
25
uint8_t
m_art_layer
{0};
26
uint16_t
m_art_channel
{0};
27
};
28
}
29
30
#endif
Muon::NSW_MMTP_RawDataHit
Definition:
NSW_MMTP_RawDataHit.h:13
xAOD::uint8_t
uint8_t
Definition:
Muon_v1.cxx:557
Muon::NSW_MMTP_RawDataHit::~NSW_MMTP_RawDataHit
virtual ~NSW_MMTP_RawDataHit()=default
Muon::NSW_MMTP_RawDataHit::NSW_MMTP_RawDataHit
NSW_MMTP_RawDataHit(uint16_t art_BCID, uint8_t art_layer, uint16_t art_channel)
Definition:
NSW_MMTP_RawDataHit.cxx:7
Muon
NRpcCablingAlg reads raw condition data and writes derived condition data to the condition store.
Definition:
TrackSystemController.h:45
Muon::NSW_MMTP_RawDataHit::art_BCID
uint16_t art_BCID() const
Definition:
NSW_MMTP_RawDataHit.h:19
Muon::NSW_MMTP_RawDataHit::m_art_layer
uint8_t m_art_layer
Definition:
NSW_MMTP_RawDataHit.h:25
xAOD::uint16_t
setWord1 uint16_t
Definition:
eFexEMRoI_v1.cxx:93
Muon::NSW_MMTP_RawDataHit::m_art_channel
uint16_t m_art_channel
Definition:
NSW_MMTP_RawDataHit.h:26
Muon::NSW_MMTP_RawDataHit::m_art_BCID
uint16_t m_art_BCID
Definition:
NSW_MMTP_RawDataHit.h:24
Muon::NSW_MMTP_RawDataHit::art_layer
uint8_t art_layer() const
Definition:
NSW_MMTP_RawDataHit.h:20
Muon::NSW_MMTP_RawDataHit::art_channel
uint16_t art_channel() const
Definition:
NSW_MMTP_RawDataHit.h:21
python.CaloAddPedShiftConfig.default
default
Definition:
CaloAddPedShiftConfig.py:43
Muon::NSW_MMTP_RawDataHit::NSW_MMTP_RawDataHitCnv_p1
friend class NSW_MMTP_RawDataHitCnv_p1
Definition:
NSW_MMTP_RawDataHit.h:14
Generated on Thu Mar 20 2025 21:16:15 for ATLAS Offline Software by
1.8.18