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
MuonSpectrometer
MuonCablings
MuonCablingData
src
RpcCablingData.cxx
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#include "
MuonCablingData/RpcCablingData.h
"
6
#include "
MuonCablingData/RpcFlatCableTranslator.h
"
7
#include <format>
8
9
namespace
Muon
{
10
std::ostream&
operator<<
(std::ostream& ostr,
const
RpcCablingOfflineID
&
obj
) {
11
ostr <<
std::format
(
"name: {:2d} "
,
obj
.stationIndex)
12
<<
std::format
(
" eta: {:2d} "
,
obj
.eta)
13
<<
std::format
(
" phi: {:2d} "
,
obj
.phi)
14
<<
std::format
(
"doubletR: {:1d} "
,
obj
.doubletR)
15
<<
std::format
(
"doubletPhi: {:1d} "
,
obj
.doubletPhi)
16
<<
std::format
(
"doubletZ: {:1d} "
,
obj
.doubletZ)
17
<<
std::format
(
"gasGap: {:1d} "
,
obj
.gasGap)
18
<<
std::format
(
"isPhi: {:1d} "
,
obj
.measuresPhi())
19
<<
std::format
(
"side: {:1d} "
,
obj
.stripSide());
20
return
ostr;
21
}
22
std::ostream&
operator<<
(std::ostream& ostr,
const
RpcCablingOnlineID
&
obj
) {
23
ostr <<
std::format
(
"subDetector: {:3d} "
,
obj
.subDetector);
24
ostr <<
std::format
(
"boardSector: {:2d} "
,
obj
.boardSector);
25
ostr <<
std::format
(
"board: {:2d} "
,
obj
.board);
26
return
ostr;
27
}
28
std::ostream&
operator<<
(std::ostream& ostr,
const
RpcCablingData
&
obj
) {
29
ostr << static_cast<const RpcCablingOfflineID&>(
obj
);
30
ostr <<
std::format
(
"strip: {:2d} "
,
obj
.strip) <<
" --- "
;
31
ostr << static_cast<const RpcCablingOnlineID&>(
obj
);
32
ostr <<
std::format
(
"channelId: {:2d}"
,
obj
.channelId);
33
return
ostr;
34
}
35
}
vtune_athena.format
format
Definition:
vtune_athena.py:14
RpcCablingData.h
Muon::RpcCablingOfflineID
Struct to represent the offline identifier of the Rpc measurement decomposed into the particular fiel...
Definition:
RpcCablingData.h:39
Muon
NRpcCablingAlg reads raw condition data and writes derived condition data to the condition store.
Definition:
TrackSystemController.h:45
Muon::RpcCablingData
Helper struct that is parsed to the cabling map to translate between the offline & online Identifiers...
Definition:
RpcCablingData.h:94
Muon::RpcCablingOnlineID
In an analogous way to the RpcCablingOfflineID, the RpcCablingOnlineID, holds all information needed ...
Definition:
RpcCablingData.h:77
Muon::operator<<
std::ostream & operator<<(std::ostream &ostr, const Muon::HedgehogBoard &board)
Definition:
HedgehogBoard.cxx:11
RpcFlatCableTranslator.h
python.PyAthena.obj
obj
Definition:
PyAthena.py:132
Generated on Sat May 31 2025 21:16:58 for ATLAS Offline Software by
1.8.18