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
Trigger
TrigEvent
TrigSteeringEventTPCnv
TrigSteeringEventTPCnv
HLTResult_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
/**********************************************************************************
6
* @Project: Trigger
7
* @Package: TrigSteeringEventTPCnv
8
* @class : HLTResult_p1
9
*
10
* @brief persistent representation of all three trigger level information - for now
11
* this is exactly what is in HLTResultData.
12
*
13
* @author Andrew Hamilton <Andrew.Hamilton@cern.ch> - U. of Geneva, Switzerland
14
* @author Francesca Bucci <f.bucci@cern.ch> - U. of Geneva, Switzerland
15
*
16
* File and Version Information:
17
* $Id: HLTResult_p1.h,v 1.2 2009-04-01 22:14:57 salvator Exp $
18
**********************************************************************************/
19
20
#ifndef TrigSteeringEventTPCnv_HLTResult_p1_H
21
#define TrigSteeringEventTPCnv_HLTResult_p1_H
22
23
#include <vector>
24
25
#include "
TrigSteeringEvent/HLTResult.h
"
26
27
28
// needed to fix a Gaudi problem in SLC3 (should be removed eventually):
29
#include <stdint.h>
30
31
namespace
HLT
{
32
33
class
HLTResult_p1
34
{
35
friend
class
HLTResultCnv
;
36
37
public
:
38
39
// default constructor
40
HLTResult_p1
() { }
41
42
// default destructor
43
virtual
~HLTResult_p1
() { }
44
45
std::vector<uint32_t>
m_headerResult
;
46
std::vector<uint32_t>
m_chainsResult
;
47
std::vector<uint32_t>
m_navigationResult
;
48
49
};
50
51
}
// end of HLT namespace
52
53
54
#endif
HLT::HLTResult_p1::~HLTResult_p1
virtual ~HLTResult_p1()
Definition:
HLTResult_p1.h:69
HLTResult.h
HLT
It used to be useful piece of code for replacing actual SG with other store of similar functionality ...
Definition:
HLTResultReader.h:26
HLT::HLTResult_p1::m_headerResult
std::vector< uint32_t > m_headerResult
Definition:
HLTResult_p1.h:71
HLTResultCnv
Definition:
HLTResultCnv.h:40
HLT::HLTResult_p1::m_navigationResult
std::vector< uint32_t > m_navigationResult
Definition:
HLTResult_p1.h:73
HLT::HLTResult_p1::HLTResult_p1
HLTResult_p1()
Definition:
HLTResult_p1.h:66
HLT::HLTResult_p1::m_chainsResult
std::vector< uint32_t > m_chainsResult
Definition:
HLTResult_p1.h:72
Generated on Sat May 10 2025 21:10:37 for ATLAS Offline Software by
1.8.18