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
TrigT1
L1Topo
L1TopoConfig
Root
L1TopoConfigGlobal.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 "
L1TopoConfig/L1TopoConfigGlobal.h
"
6
7
#include <iostream>
8
9
using namespace
std;
10
11
12
13
TXC::L1TopoConfigGlobal::~L1TopoConfigGlobal
() {}
14
15
void
TXC::L1TopoConfigGlobal::addTopoConfigElement
(
const
std::string &
name
,
const
std::string &
value
) {
16
m_topoConfigElements.push_back(
TopoConfigElement
(
name
,
value
));
17
}
18
19
void
TXC::L1TopoConfigGlobal::addTopoConfigElement
(
const
TopoConfigElement
&
config
) {
20
m_topoConfigElements.push_back(
config
);
21
}
22
23
namespace
TXC
{
24
25
std::ostream &
operator<<
(std::ostream &o,
const
L1TopoConfigGlobal
& topoconfig) {
26
o <<
"General configuration (<TopoConfig>):"
<< endl;
27
for
(
const
TXC::TopoConfigElement
& ce : topoconfig.
getTopoConfigs
())
28
o <<
" "
<< ce.name <<
": "
<< ce.value << endl;
29
30
return
o;
31
}
32
33
}
// namespace TXC
athena.value
value
Definition:
athena.py:124
TXC::L1TopoConfigGlobal::getTopoConfigs
const std::vector< TopoConfigElement > & getTopoConfigs() const
Definition:
L1TopoConfigGlobal.h:34
L1TopoConfigGlobal.h
config
Definition:
PhysicsAnalysis/AnalysisCommon/AssociationUtils/python/config.py:1
TXC::L1TopoConfigGlobal
Definition:
L1TopoConfigGlobal.h:20
TXC::L1TopoConfigGlobal::~L1TopoConfigGlobal
virtual ~L1TopoConfigGlobal()
Definition:
L1TopoConfigGlobal.cxx:13
TXC
Definition:
IL1TopoMenuLoader.h:10
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:228
operator<<
std::ostream & operator<<(std::ostream &lhs, const TestGaudiProperty &rhs)
Definition:
TestGaudiProperty.cxx:69
TXC::L1TopoConfigGlobal::addTopoConfigElement
void addTopoConfigElement(const std::string &name, const std::string &value)
Definition:
L1TopoConfigGlobal.cxx:15
TXC::TopoConfigElement
Definition:
L1TopoConfigGlobal.h:13
Generated on Sun Mar 16 2025 21:13:22 for ATLAS Offline Software by
1.8.18