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
MuonCnv
MuonEventAthenaPool
MuonEventAthenaPool
CscRawData_p4.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
// NOTE: This is an exact copy of CscRawData_p3, since from p3 to p4 only the meaning of the m_hashId changed:
6
// Until p3, the m_hashId stores the identifier hash which encodes the geometrical position of the CSC
7
// From p4 onwards, the m_hashId stores the position of the CSC identifier in the vector of identifiers
8
9
#ifndef MUON_CSCRAWDATA_P4_H
10
#define MUON_CSCRAWDATA_P4_H
11
12
#include <iostream>
13
#include <vector>
14
#include <inttypes.h>
15
16
class
CscRawData_p4
17
{
18
public
:
19
CscRawData_p4
()
20
:
21
m_amps
(),
22
m_address
(0),
23
m_id
(0),
24
m_time
(0),
25
m_rpuID
(0),
26
m_width
(0),
27
m_isTimeComputed
(false),
28
m_hashId
(0)
29
{}
30
31
friend
class
CscRawDataCnv_p4
;
32
33
private
:
34
36
38
std::vector<uint16_t>
m_amps
;
40
uint32_t
m_address
;
42
uint16_t
m_id
;
43
44
// m_dpuiID removed from _p1
45
46
//New to _p2
47
49
uint16_t
m_time
;
51
uint16_t
m_rpuID
;
53
uint16_t
m_width
;
55
bool
m_isTimeComputed
;
57
uint32_t
m_hashId
;
58
};
59
60
#endif
CscRawData_p4::m_hashId
uint32_t m_hashId
offline hash identifier of the first strip in the online cluster
Definition:
CscRawData_p4.h:57
CscRawData_p4::m_id
uint16_t m_id
online identifier of the collection in which this strip is
Definition:
CscRawData_p4.h:42
xAOD::uint32_t
setEventNumber uint32_t
Definition:
EventInfo_v1.cxx:127
CscRawDataCnv_p4
Transient/Persistent converter for CscRawData class.
Definition:
CscRawDataCnv_p4.h:23
CscRawData_p4::m_amps
std::vector< uint16_t > m_amps
in common with _p1
Definition:
CscRawData_p4.h:38
CscRawData_p4::m_time
uint16_t m_time
online peaking time of the first strip: this is 0 if failed to compute time in the ROD
Definition:
CscRawData_p4.h:49
CscRawData_p4::m_rpuID
uint16_t m_rpuID
SPU -Sparsifier Processing Unit - identifier in which this strip is.
Definition:
CscRawData_p4.h:51
CscRawData_p4::m_isTimeComputed
bool m_isTimeComputed
failed to compute the time in the ROD or not - if failure m_time = 0
Definition:
CscRawData_p4.h:55
xAOD::uint16_t
setWord1 uint16_t
Definition:
eFexEMRoI_v1.cxx:93
CscRawData_p4::m_width
uint16_t m_width
number of consecutive strips forming the on-line cluster
Definition:
CscRawData_p4.h:53
CscRawData_p4::CscRawData_p4
CscRawData_p4()
Definition:
CscRawData_p4.h:19
CscRawData_p4::m_address
uint32_t m_address
online identifier of the first strip in the ROD cluster
Definition:
CscRawData_p4.h:40
CscRawData_p4
Definition:
CscRawData_p4.h:17
Generated on Tue May 27 2025 21:08:08 for ATLAS Offline Software by
1.8.18