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
TrigConfiguration
TrigConfIO
TrigConfIO
TrigDBMenuLoader.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
3
*/
4
12
#ifndef TRIGCONFIO_TRIGDBMENULOADER_H
13
#define TRIGCONFIO_TRIGDBMENULOADER_H
14
15
#include "
TrigConfIO/TrigDBLoader.h
"
16
17
#include "boost/property_tree/ptree.hpp"
18
19
#include "
TrigConfData/L1Menu.h
"
20
#include "
TrigConfData/HLTMenu.h
"
21
22
23
namespace
TrigConf
{
24
25
class
QueryDefinition;
26
30
class
TrigDBMenuLoader
:
public
TrigConf::TrigDBLoader
{
31
public
:
32
34
TrigDBMenuLoader
(
const
std::string & connection);
35
37
virtual
~TrigDBMenuLoader
()
override
;
38
45
bool
loadL1Menu
(
unsigned
int
smk
,
46
boost::property_tree::ptree
&
l1menu
,
47
const
std::string &
outFileName
=
""
)
const
;
48
55
bool
loadHLTMenu
(
unsigned
int
smk
,
56
boost::property_tree::ptree
& hltmenu,
57
const
std::string &
outFileName
=
""
)
const
;
58
66
bool
loadL1Menu
(
unsigned
int
smk
,
67
L1Menu
&
l1menu
,
68
const
std::string &
outFileName
=
""
)
const
;
69
77
bool
loadHLTMenu
(
unsigned
int
smk
,
78
HLTMenu
& hltmenu,
79
const
std::string &
outFileName
=
""
)
const
;
80
private
:
81
std::map<size_t, QueryDefinition>
m_l1queries
;
82
std::map<size_t, QueryDefinition>
m_hltqueries
;
83
};
84
85
}
86
87
#endif
88
TrigConf::TrigDBMenuLoader::m_l1queries
std::map< size_t, QueryDefinition > m_l1queries
Definition:
TrigDBMenuLoader.h:81
TrigConf::HLTMenu
HLT menu configuration.
Definition:
HLTMenu.h:21
RunEBWeightsComputation.smk
smk
Definition:
RunEBWeightsComputation.py:87
TrigConf::TrigDBMenuLoader::loadHLTMenu
bool loadHLTMenu(unsigned int smk, boost::property_tree::ptree &hltmenu, const std::string &outFileName="") const
Load HLT menu content from the Trigger DB into two ptrees for a given SuperMasterKey (SMK)
Definition:
TrigDBMenuLoader.cxx:123
TrigConf::TrigDBLoader
Loader of trigger configurations from Json files.
Definition:
TrigDBLoader.h:33
TrigConf::TrigDBMenuLoader::TrigDBMenuLoader
TrigDBMenuLoader(const std::string &connection)
Constructor.
Definition:
TrigDBMenuLoader.cxx:6
TrigDBLoader.h
Loader class for Trigger configuration from the Trigger DB.
TrigConf::L1Menu
L1 menu configuration.
Definition:
L1Menu.h:28
TrigConf
Forward iterator to traverse the main components of the trigger configuration.
Definition:
Config.h:22
dumpNswErrorDb.outFileName
string outFileName
Definition:
dumpNswErrorDb.py:86
TrigConf::TrigDBMenuLoader::loadL1Menu
bool loadL1Menu(unsigned int smk, boost::property_tree::ptree &l1menu, const std::string &outFileName="") const
Load L1 menu content from the Trigger DB into a ptree for a given SuperMasterKey (SMK)
Definition:
TrigDBMenuLoader.cxx:93
ptree
boost::property_tree::ptree ptree
Definition:
JsonFileLoader.cxx:16
TrigConf::TrigDBMenuLoader::m_hltqueries
std::map< size_t, QueryDefinition > m_hltqueries
Definition:
TrigDBMenuLoader.h:82
python.XMLReader.l1menu
l1menu
Definition:
XMLReader.py:73
HLTMenu.h
L1Menu.h
TrigConf::TrigDBMenuLoader
Loader of trigger menu configurations from the database.
Definition:
TrigDBMenuLoader.h:30
TrigConf::TrigDBMenuLoader::~TrigDBMenuLoader
virtual ~TrigDBMenuLoader() override
Destructor - cannot be defined here because QueryDefinition is an incomplete type.
Generated on Sun Mar 23 2025 21:21:18 for ATLAS Offline Software by
1.8.18