Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
LHCb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LHCb
LHCb
Merge requests
!458
Modernize HltDAQ
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Modernize HltDAQ
modernize-hltdaq
into
master
Overview
19
Commits
2
Pipelines
0
Changes
17
1 unresolved thread
Hide all comments
Merged
Gerhard Raven
requested to merge
modernize-hltdaq
into
master
8 years ago
Overview
19
Commits
2
Pipelines
0
Changes
17
1 unresolved thread
Hide all comments
Expand
prefer Gaudi::Property and direct member initialization
prefer delegating to base class constructor
0
0
Merge request reports
Compare
master
version 2
4bebcf96
8 years ago
version 1
30aa45cb
8 years ago
master (base)
and
latest version
latest version
a021f8ed
2 commits,
8 years ago
version 2
4bebcf96
1 commit,
8 years ago
version 1
30aa45cb
1 commit,
8 years ago
17 files
+
77
−
165
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
17
Search (e.g. *.vue) (Ctrl+P)
Hlt/HltDAQ/HltDAQ/HltEvaluator.h
+
9
−
10
Options
@@ -181,11 +181,10 @@ protected:
SmartIF
<
IHltMonitorSvc
>
m_hltMonSvc
;
mutable
LoKi
::
Hybrid
::
IHltFactory
*
m_factory
=
nullptr
;
std
::
string
m_odin_location
;
std
::
string
m_l0_location
;
std
::
string
m_hlt_location
[
2
];
std
::
string
m_raw_location
;
std
::
map
<
unsigned
int
,
std
::
string
>
m_bits
;
Gaudi
::
Property
<
std
::
string
>
m_odin_location
{
this
,
"ODINLocation"
,
LHCb
::
ODINLocation
::
Default
};
Gaudi
::
Property
<
std
::
string
>
m_l0_location
{
this
,
"L0DUReportLocation"
,
LHCb
::
L0DUReportLocation
::
Default
};
std
::
array
<
Gaudi
::
Property
<
std
::
string
>
,
2
>
m_hlt_location
{
{
Gaudi
::
Property
<
std
::
string
>
{
this
,
"Hlt1DecReportsLocation"
,
LHCb
::
HltDecReportsLocation
::
Default
},
Gaudi
::
Property
<
std
::
string
>
{
this
,
"Hlt2DecReportsLocation"
,
LHCb
::
HltDecReportsLocation
::
Default
}
}
};
bool
m_evals_updated
=
false
;
bool
m_preambulo_updated
=
false
;
@@ -193,18 +192,18 @@ protected:
private
:
bool
m_useCondDB
;
std
::
string
m_monSvc
;
Gaudi
::
Property
<
bool
>
m_useCondDB
{
this
,
"GetStartOfRunFromCondDB"
,
true
}
;
Gaudi
::
Property
<
std
::
string
>
m_monSvc
{
this
,
"MonitorSvc"
,
"HltMonitorSvc/Hlt2MonSvc"
}
;
std
::
vector
<
std
::
string
>
m_preambulo_
;
// the preambulo property
Gaudi
::
Property
<
std
::
vector
<
std
::
string
>
>
m_preambulo_
{
this
,
"Preambulo"
};
std
::
unordered_map
<
std
::
string
,
const
DataObject
*>
m_data
;
Condition
*
m_runpars
=
nullptr
;
SmartIF
<
IUpdateManagerSvc
>
m_updMgrSvc
;
mutable
unsigned
long
long
m_startOfRun
=
0
;
double
m_binWidth
=
10
;
// in _seconds_!
double
m_timeSpan
=
4000
;
// in _seconds_!
Gaudi
::
Property
<
double
>
m_binWidth
{
this
,
"TrendBinWidth"
,
10
}
;
// in _seconds_!
Gaudi
::
Property
<
double
>
m_timeSpan
{
this
,
"TrendTimeSpan"
,
4000
}
;
// in _seconds_!
StatusCode
i_updateConditions
();
void
handle
(
const
Incident
&
)
override
;
Loading