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
MuonTGC_Cabling
MuonTGC_Cabling
TGCCableSLBToSSW.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef MUONTGC_CABLING_TGCCABLESLBTOSSW_HH
6
#define MUONTGC_CABLING_TGCCABLESLBTOSSW_HH
7
8
#include "
MuonTGC_Cabling/TGCCable.h
"
9
10
#include <string>
11
#include <memory>
12
#include <array>
13
14
namespace
MuonTGC_Cabling
{
15
16
class
TGCDatabase;
17
18
class
TGCCableSLBToSSW
:
public
TGCCable
{
19
public
:
20
enum
{
21
SL
=
TGCId::MaxModuleType
,
22
MaxModuleType
=
TGCId::MaxModuleType
+ 1
23
};
24
25
TGCCableSLBToSSW
(
const
std::string&
filename
);
26
virtual
~TGCCableSLBToSSW
() =
default
;
27
28
virtual
TGCModuleMap
*
getModule
(
const
TGCModuleId
* moduleId)
const
;
29
30
private
:
31
TGCCableSLBToSSW
() {}
32
virtual
TGCModuleMap
*
getModuleIn
(
const
TGCModuleId
* ssw)
const
;
33
virtual
TGCModuleMap
*
getModuleOut
(
const
TGCModuleId
* slb)
const
;
34
std::array<std::array<std::unique_ptr<TGCDatabase>,
MaxModuleType
>,
TGCId::MaxRegionType
>
m_database
{{{
nullptr
}}};
35
};
36
37
}
// end of namespace
38
39
#endif
MuonTGC_Cabling::TGCId::MaxModuleType
@ MaxModuleType
Definition:
TGCId.h:48
MuonTGC_Cabling::TGCCableSLBToSSW::getModuleOut
virtual TGCModuleMap * getModuleOut(const TGCModuleId *slb) const
Definition:
TGCCableSLBToSSW.cxx:137
MuonTGC_Cabling::TGCCableSLBToSSW::MaxModuleType
@ MaxModuleType
Definition:
TGCCableSLBToSSW.h:22
MuonTGC_Cabling::TGCModuleMap
Definition:
TGCModuleMap.h:16
MuonTGC_Cabling::TGCCableSLBToSSW::getModule
virtual TGCModuleMap * getModule(const TGCModuleId *moduleId) const
Definition:
TGCCableSLBToSSW.cxx:33
MuonTGC_Cabling::TGCCableSLBToSSW::~TGCCableSLBToSSW
virtual ~TGCCableSLBToSSW()=default
MuonTGC_Cabling
Definition:
TGCCable.h:13
MuonTGC_Cabling::TGCCable
Definition:
TGCCable.h:16
MuonTGC_Cabling::TGCCableSLBToSSW::TGCCableSLBToSSW
TGCCableSLBToSSW()
Definition:
TGCCableSLBToSSW.h:31
MuonTGC_Cabling::TGCId::MaxRegionType
@ MaxRegionType
Definition:
TGCId.h:54
MuonTGC_Cabling::TGCCableSLBToSSW::SL
@ SL
Definition:
TGCCableSLBToSSW.h:21
TGCCable.h
CaloCellTimeCorrFiller.filename
filename
Definition:
CaloCellTimeCorrFiller.py:24
MuonTGC_Cabling::TGCModuleId
Definition:
TGCModuleId.h:13
MuonTGC_Cabling::TGCCableSLBToSSW::getModuleIn
virtual TGCModuleMap * getModuleIn(const TGCModuleId *ssw) const
Definition:
TGCCableSLBToSSW.cxx:43
MuonTGC_Cabling::TGCCableSLBToSSW::m_database
std::array< std::array< std::unique_ptr< TGCDatabase >, MaxModuleType >, TGCId::MaxRegionType > m_database
Definition:
TGCCableSLBToSSW.h:34
MuonTGC_Cabling::TGCCableSLBToSSW
Definition:
TGCCableSLBToSSW.h:18
Generated on Mon May 12 2025 21:19:03 for ATLAS Offline Software by
1.8.18