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
MuonCablings
MuonTGC_Cabling
MuonTGC_Cabling
TGCCableSLBToSSW.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2018 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
12
#include "
MuonTGC_Cabling/TGCId.h
"
13
14
namespace
MuonTGC_Cabling
15
{
16
17
class
TGCDatabase;
18
19
class
TGCCableSLBToSSW
:
public
TGCCable
20
{
21
public
:
22
enum
{
23
SL
=
TGCId::MaxModuleType
,
24
MaxModuleType
=
TGCId::MaxModuleType
+ 1
25
};
26
27
// Constructor & Destructor
28
TGCCableSLBToSSW
(
const
std::string&
filename
);
29
30
virtual
~TGCCableSLBToSSW
(
void
);
31
32
virtual
TGCModuleMap
*
getModule
(
const
TGCModuleId
* moduleId)
const
;
33
34
private
:
35
TGCCableSLBToSSW
(
void
) {}
36
virtual
TGCModuleMap
*
getModuleIn
(
const
TGCModuleId
* ssw)
const
;
37
virtual
TGCModuleMap
*
getModuleOut
(
const
TGCModuleId
* slb)
const
;
38
TGCDatabase
*
m_database
[
TGCId::MaxRegionType
][
MaxModuleType
]{};
39
};
40
41
}
// end of namespace
42
43
#endif
MuonTGC_Cabling::TGCCableSLBToSSW::m_database
TGCDatabase * m_database[TGCId::MaxRegionType][MaxModuleType]
Definition:
TGCCableSLBToSSW.h:38
MuonTGC_Cabling::TGCCableSLBToSSW::~TGCCableSLBToSSW
virtual ~TGCCableSLBToSSW(void)
Definition:
TGCCableSLBToSSW.cxx:48
MuonTGC_Cabling::TGCId::MaxModuleType
@ MaxModuleType
Definition:
TGCId.h:48
MuonTGC_Cabling::TGCCableSLBToSSW::getModuleOut
virtual TGCModuleMap * getModuleOut(const TGCModuleId *slb) const
Definition:
TGCCableSLBToSSW.cxx:172
MuonTGC_Cabling::TGCCableSLBToSSW::MaxModuleType
@ MaxModuleType
Definition:
TGCCableSLBToSSW.h:24
MuonTGC_Cabling::TGCModuleMap
Definition:
TGCModuleMap.h:16
TGCId.h
MuonTGC_Cabling::TGCCableSLBToSSW::getModule
virtual TGCModuleMap * getModule(const TGCModuleId *moduleId) const
Definition:
TGCCableSLBToSSW.cxx:68
MuonTGC_Cabling::TGCDatabase
Definition:
TGCDatabase.h:15
MuonTGC_Cabling
Definition:
TGCCable.h:13
MuonTGC_Cabling::TGCCable
Definition:
TGCCable.h:16
MuonTGC_Cabling::TGCId::MaxRegionType
@ MaxRegionType
Definition:
TGCId.h:54
MuonTGC_Cabling::TGCCableSLBToSSW::SL
@ SL
Definition:
TGCCableSLBToSSW.h:23
TGCCable.h
CaloCellTimeCorrFiller.filename
filename
Definition:
CaloCellTimeCorrFiller.py:24
MuonTGC_Cabling::TGCCableSLBToSSW::TGCCableSLBToSSW
TGCCableSLBToSSW(void)
Definition:
TGCCableSLBToSSW.h:35
MuonTGC_Cabling::TGCModuleId
Definition:
TGCModuleId.h:13
MuonTGC_Cabling::TGCCableSLBToSSW::getModuleIn
virtual TGCModuleMap * getModuleIn(const TGCModuleId *ssw) const
Definition:
TGCCableSLBToSSW.cxx:78
MuonTGC_Cabling::TGCCableSLBToSSW
Definition:
TGCCableSLBToSSW.h:20
Generated on Sat Mar 15 2025 21:19:48 for ATLAS Offline Software by
1.8.18