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_RawDataContainer_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 ALFAATHENAPOOL_ALFACONTAINER_P1_H
6
#define ALFAATHENAPOOL_ALFACONTAINER_P1_H
7
8
#include <vector>
9
#include "
ALFA_RawDataCollection_p1.h
"
10
11
class
ALFA_RawDataContainer_p1
:
public
std::vector<ALFA_RawDataCollection_p1>
12
{
13
14
uint32_t
TimeStamp
;
15
//Time Stamp ns
16
uint32_t
TimeStampns
;
17
//Lumi Block ID
18
uint32_t
LumiBlock
;
19
//Bunch Crossing ID
20
uint32_t
BCId
;
21
//Lvl1 trigger pattern (fired items in lvl1 trigger)
22
std::vector<bool>
lvl1Pattern
;
23
//Lvl2 trigger pattern (fired items in lvl2 trigger)
24
std::vector<bool>
lvl2Pattern
;
25
//EF trigger pattern (fired items in EF)
26
std::vector<bool>
efPattern
;
27
28
public
:
29
30
ALFA_RawDataContainer_p1
()
31
{
32
TimeStamp
=0;
33
TimeStampns
=0;
34
LumiBlock
=0;
35
BCId
=0;
36
};
37
38
friend
class
ALFA_RawDataContainerCnv_p1
;
39
40
};
41
42
#endif
xAOD::uint32_t
setEventNumber uint32_t
Definition:
EventInfo_v1.cxx:127
ALFA_RawDataContainer_p1::lvl2Pattern
std::vector< bool > lvl2Pattern
Definition:
ALFA_RawDataContainer_p1.h:24
ALFA_RawDataContainer_p1::TimeStamp
uint32_t TimeStamp
Definition:
ALFA_RawDataContainer_p1.h:14
ALFA_RawDataContainer_p1::ALFA_RawDataContainer_p1
ALFA_RawDataContainer_p1()
Definition:
ALFA_RawDataContainer_p1.h:30
ALFA_RawDataContainer_p1::TimeStampns
uint32_t TimeStampns
Definition:
ALFA_RawDataContainer_p1.h:16
ALFA_RawDataContainerCnv_p1
Definition:
ALFA_RawDataContainerCnv_p1.h:21
ALFA_RawDataContainer_p1::efPattern
std::vector< bool > efPattern
Definition:
ALFA_RawDataContainer_p1.h:26
ALFA_RawDataContainer_p1::BCId
uint32_t BCId
Definition:
ALFA_RawDataContainer_p1.h:20
ALFA_RawDataCollection_p1.h
ALFA_RawDataContainer_p1
Definition:
ALFA_RawDataContainer_p1.h:12
ALFA_RawDataContainer_p1::lvl1Pattern
std::vector< bool > lvl1Pattern
Definition:
ALFA_RawDataContainer_p1.h:22
ALFA_RawDataContainer_p1::LumiBlock
uint32_t LumiBlock
Definition:
ALFA_RawDataContainer_p1.h:18
Generated on Sun Apr 6 2025 21:07:05 for ATLAS Offline Software by
1.8.18