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
LArCalorimeter
LArRawUtils
LArRawUtils
LArTT_Sampling.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef LARRAWUTILS_LARTT_SAMPLING_H
6
#define LARRAWUTILS_LARTT_SAMPLING_H
7
8
#include "
Identifier/IdentifierHash.h
"
9
10
//
11
// This class encapsulates a combined identifier (TrigTower + Sampling)
12
// To be used in raw data access.
13
// TrigTower should be a valid TT IdentifierHash,
14
// sampling is an unsigned int from 0-3.
15
//
16
17
class
LArTT_Sampling
18
{
19
public
:
20
// Constructors
21
LArTT_Sampling
(
const
IdentifierHash
&
hash
,
unsigned
int
sam) ;
22
LArTT_Sampling
(
unsigned
int
) ;
23
24
// Access
25
unsigned
int
combinedId
();
26
unsigned
int
sampling
();
27
IdentifierHash
TT_id
();
28
29
private
:
30
31
unsigned
int
m_id
;
32
33
};
34
35
inline
36
LArTT_Sampling:: LArTT_Sampling
(
const
IdentifierHash
&
hash
,
37
unsigned
int
sam)
38
{
39
unsigned
int
i
=(
unsigned
int
)
hash
;
40
m_id
= (
i
<<2)+ sam;
41
return ;
42
}
43
44
45
inline
46
LArTT_Sampling:: LArTT_Sampling
(
unsigned
int
id
)
47
{
48
m_id
=
id
;
49
return ;
50
}
51
52
inline
53
unsigned
int
LArTT_Sampling::combinedId
()
54
{
55
return
m_id
;
56
}
57
58
inline
59
unsigned
int
LArTT_Sampling::sampling
()
60
{
61
unsigned
int
id
=
m_id
& 3;
62
return
id
;
63
}
64
65
inline
66
IdentifierHash
LArTT_Sampling::TT_id
()
67
{
68
unsigned
int
id
=
m_id
>>2;
69
return
IdentifierHash
(
id
) ;
70
}
71
72
#endif
LArTT_Sampling::sampling
unsigned int sampling()
Definition:
LArTT_Sampling.h:59
LArTT_Sampling
Definition:
LArTT_Sampling.h:18
LArTT_Sampling::m_id
unsigned int m_id
Definition:
LArTT_Sampling.h:31
lumiFormat.i
int i
Definition:
lumiFormat.py:85
id
SG::auxid_t id
Definition:
Control/AthContainers/Root/debug.cxx:239
IdentifierHash.h
python.CaloAddPedShiftConfig.int
int
Definition:
CaloAddPedShiftConfig.py:45
CaloCondBlobAlgs_fillNoiseFromASCII.hash
dictionary hash
Definition:
CaloCondBlobAlgs_fillNoiseFromASCII.py:109
LArTT_Sampling::LArTT_Sampling
LArTT_Sampling(const IdentifierHash &hash, unsigned int sam)
Definition:
LArTT_Sampling.h:36
LArTT_Sampling::combinedId
unsigned int combinedId()
Definition:
LArTT_Sampling.h:53
LArTT_Sampling::TT_id
IdentifierHash TT_id()
Definition:
LArTT_Sampling.h:66
IdentifierHash
This is a "hash" representation of an Identifier. This encodes a 32 bit index which can be used to lo...
Definition:
IdentifierHash.h:25
Generated on Thu May 29 2025 21:13:44 for ATLAS Offline Software by
1.8.18