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
ForwardDetectors
ALFA
ALFA_EventCnv
ALFA_EventTPCnv
ALFA_EventTPCnv
ALFA_RawData_charge_p1.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 ALFA_RAWDATA_CHARGE_P1_H
6
#define ALFA_RAWDATA_CHARGE_P1_H
7
8
#include <inttypes.h>
9
10
#include<stdint.h>
11
#include<vector>
12
#include <iostream>
13
14
class
ALFA_RawData_charge_p1
{
15
16
private
:
17
18
// Data info TSM:
19
uint16_t
ChannelNumId
;
20
uint16_t
PMFId
;
21
uint16_t
MBId
;
22
uint32_t
EventCount
;
23
std::vector<uint16_t>
m_ChargeChan
;
24
25
// All the datawords (no headers and footers) coming from this channel
26
// to be decoded on demand using ALFA_ReadOut methods
27
std::vector<uint32_t>
m_dataWords
;
28
29
30
public
:
31
32
friend
class
ALFA_RawDataCnv_charge_p1
;
33
34
35
ALFA_RawData_charge_p1
():
36
37
ChannelNumId
(0),
38
PMFId
(0),
39
MBId
(0),
40
EventCount
(0)
41
42
{}
43
44
45
46
47
};
48
49
#endif
xAOD::uint32_t
setEventNumber uint32_t
Definition:
EventInfo_v1.cxx:127
ALFA_RawData_charge_p1
Definition:
ALFA_RawData_charge_p1.h:14
ALFA_RawData_charge_p1::ALFA_RawData_charge_p1
ALFA_RawData_charge_p1()
Definition:
ALFA_RawData_charge_p1.h:35
ALFA_RawDataCnv_charge_p1
Definition:
ALFA_RawDataCnv_charge_p1.h:14
xAOD::uint16_t
setWord1 uint16_t
Definition:
eFexEMRoI_v1.cxx:93
ALFA_RawData_charge_p1::PMFId
uint16_t PMFId
Definition:
ALFA_RawData_charge_p1.h:20
ALFA_RawData_charge_p1::m_dataWords
std::vector< uint32_t > m_dataWords
Definition:
ALFA_RawData_charge_p1.h:27
ALFA_RawData_charge_p1::MBId
uint16_t MBId
Definition:
ALFA_RawData_charge_p1.h:21
ALFA_RawData_charge_p1::EventCount
uint32_t EventCount
Definition:
ALFA_RawData_charge_p1.h:22
ALFA_RawData_charge_p1::ChannelNumId
uint16_t ChannelNumId
Definition:
ALFA_RawData_charge_p1.h:19
ALFA_RawData_charge_p1::m_ChargeChan
std::vector< uint16_t > m_ChargeChan
Definition:
ALFA_RawData_charge_p1.h:23
Generated on Sun Mar 23 2025 21:07:01 for ATLAS Offline Software by
1.8.18