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
TrigSteeringEventTPCnv
src
TrigOperationalInfoCnv_p1.cxx
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#include "
TrigSteeringEvent/TrigOperationalInfo.h
"
6
#include <iostream>
7
#include "
TrigSteeringEventTPCnv/TrigOperationalInfo_p1.h
"
8
#include "
TrigSteeringEventTPCnv/TrigOperationalInfoCnv_p1.h
"
9
10
11
void
TrigOperationalInfoCnv_p1::persToTrans
(
const
TrigOperationalInfo_p1
* persObj,
12
TrigOperationalInfo
* transObj,
13
MsgStream &
log
)
14
{
15
log
<<
MSG::DEBUG
<<
"TrigOperationalInfoCnv_p1::persToTrans called "
<<
endmsg
;
16
*transObj =
TrigOperationalInfo
(persObj->
m_keys
, persObj->
m_values
);
17
}
18
19
20
void
TrigOperationalInfoCnv_p1::transToPers
(
const
TrigOperationalInfo
* transObj,
21
TrigOperationalInfo_p1
* persObj,
22
MsgStream &
log
)
23
{
24
log
<<
MSG::DEBUG
<<
"TrigOperationalInfoCnv_p1::transToPers called "
<<
endmsg
;
25
auto
infos = transObj->
infos
();
26
persObj->
m_keys
= std::move(infos.first);
27
persObj->
m_values
= std::move(infos.second);
28
}
TrigOperationalInfo_p1::m_keys
std::vector< std::string > m_keys
Definition:
TrigOperationalInfo_p1.h:40
TrigOperationalInfoCnv_p1.h
TrigOperationalInfo_p1
Definition:
TrigOperationalInfo_p1.h:22
TrigOperationalInfo.h
endmsg
#define endmsg
Definition:
AnalysisConfig_Ntuple.cxx:63
TrigOperationalInfo_p1.h
TrigOperationalInfo::infos
std::pair< std::vector< std::string >, std::vector< float > > infos() const
Definition:
TrigOperationalInfo.cxx:37
TrigOperationalInfoCnv_p1::transToPers
virtual void transToPers(const TrigOperationalInfo *transObj, TrigOperationalInfo_p1 *persObj, MsgStream &log)
Definition:
TrigOperationalInfoCnv_p1.cxx:20
TrigOperationalInfo_p1::m_values
std::vector< float > m_values
Definition:
TrigOperationalInfo_p1.h:41
TrigOperationalInfoCnv_p1::persToTrans
virtual void persToTrans(const TrigOperationalInfo_p1 *persObj, TrigOperationalInfo *transObj, MsgStream &log)
Definition:
TrigOperationalInfoCnv_p1.cxx:11
TrigOperationalInfo
This class defined generic object to store operational info available during triggering online i....
Definition:
TrigOperationalInfo.h:27
DEBUG
#define DEBUG
Definition:
page_access.h:11
python.CaloCondTools.log
log
Definition:
CaloCondTools.py:20
Generated on Thu Apr 24 2025 21:21:58 for ATLAS Offline Software by
1.8.18