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
Trigger
TrigEvent
TrigMonitoringEventTPCnv
TrigMonitoringEventTPCnv
TrigConfSeq_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 TRIGCONF_SEQ_P1_H
6
#define TRIGCONF_SEQ_P1_H
7
8
/*
9
@author Rustem Ospanov
10
@date July 2009
11
12
@brief Persistent partner for TrigConfSeq.
13
*/
14
15
#include <stdint.h>
16
#include <string>
17
#include <vector>
18
19
#include "
TrigMonitoringEventTPCnv/TrigConfAlg_p1.h
"
20
21
class
TrigConfSeq_p1
22
{
23
public
:
24
25
TrigConfSeq_p1
() :
26
m_output_te_name
(),
27
m_output_te_index
(0),
28
m_output_te_id
(0),
29
m_topo_te
(0),
30
m_alg
(),
31
m_input_te
() {}
32
~TrigConfSeq_p1
() {}
33
34
friend
class
TrigConfSeqCnv_p1
;
35
36
private
:
37
38
std::string
m_output_te_name
;
39
uint16_t
m_output_te_index
;
40
uint32_t
m_output_te_id
;
41
uint32_t
m_topo_te
;
42
std::vector<TrigConfAlg_p1>
m_alg
;
43
std::vector<uint32_t>
m_input_te
;
44
};
45
46
#endif
TrigConfAlg_p1.h
xAOD::uint32_t
setEventNumber uint32_t
Definition:
EventInfo_v1.cxx:127
TrigConfSeq_p1::m_topo_te
uint32_t m_topo_te
Definition:
TrigConfSeq_p1.h:41
TrigConfSeq_p1::m_alg
std::vector< TrigConfAlg_p1 > m_alg
Definition:
TrigConfSeq_p1.h:42
TrigConfSeq_p1
Definition:
TrigConfSeq_p1.h:22
xAOD::uint16_t
setWord1 uint16_t
Definition:
eFexEMRoI_v1.cxx:93
TrigConfSeqCnv_p1
Definition:
TrigConfSeqCnv_p1.h:21
TrigConfSeq_p1::m_output_te_id
uint32_t m_output_te_id
Definition:
TrigConfSeq_p1.h:40
TrigConfSeq_p1::TrigConfSeq_p1
TrigConfSeq_p1()
Definition:
TrigConfSeq_p1.h:25
TrigConfSeq_p1::m_output_te_name
std::string m_output_te_name
Definition:
TrigConfSeq_p1.h:38
TrigConfSeq_p1::m_input_te
std::vector< uint32_t > m_input_te
Definition:
TrigConfSeq_p1.h:43
TrigConfSeq_p1::m_output_te_index
uint16_t m_output_te_index
Definition:
TrigConfSeq_p1.h:39
TrigConfSeq_p1::~TrigConfSeq_p1
~TrigConfSeq_p1()
Definition:
TrigConfSeq_p1.h:32
Generated on Sun Mar 30 2025 21:21:21 for ATLAS Offline Software by
1.8.18