Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
Vakhtang Tsulaia
athena
Commits
fea4eb13
Commit
fea4eb13
authored
6 years ago
by
Scott Snyder
Committed by
scott snyder
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
TrigOnlineMonitor: Avoid use of non-bound DataHandle.
Deprecating use of non-bound DataHandle, especially non-const.
parent
f310eea7
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
HLT/Trigger/TrigMonitoring/TrigOnlineMonitor/src/TrigL1TopoWriteValData.cxx
+3
-3
3 additions, 3 deletions
...nitoring/TrigOnlineMonitor/src/TrigL1TopoWriteValData.cxx
with
3 additions
and
3 deletions
HLT/Trigger/TrigMonitoring/TrigOnlineMonitor/src/TrigL1TopoWriteValData.cxx
+
3
−
3
View file @
fea4eb13
...
...
@@ -61,7 +61,7 @@ StatusCode TrigL1TopoWriteValData::doWriteValData(){
int
num_words
=
4
;
// Retrieve HLTResult
DataHandle
<
HLT
::
HLTResult
>
hltResult
;
///! HLTResult object
HLT
::
HLTResult
*
hltResult
=
nullptr
;
///! HLTResult object
if
(
!
evtStore
()
->
transientContains
<
HLT
::
HLTResult
>
(
m_HltResultName
.
value
())
)
{
ATH_MSG_INFO
(
"Could not find HLTResult with key "
<<
m_HltResultName
.
value
()
<<
"in SG."
);
}
else
{
...
...
@@ -73,7 +73,7 @@ StatusCode TrigL1TopoWriteValData::doWriteValData(){
}
// Retrieve L1Topo CTP simulated decision if present
const
DataHandle
<
LVL1
::
FrontPanelCTP
>
simTopoCTP
;
///! simulation output
const
LVL1
::
FrontPanelCTP
*
simTopoCTP
=
nullptr
;
///! simulation output
if
(
!
evtStore
()
->
contains
<
LVL1
::
FrontPanelCTP
>
(
m_simTopoCTPLocation
.
value
())
){
ATH_MSG_INFO
(
"Could not find LVL1::FrontPanelCTP with key "
<<
m_simTopoCTPLocation
.
value
()
<<
"in SG."
);
}
else
{
...
...
@@ -85,7 +85,7 @@ StatusCode TrigL1TopoWriteValData::doWriteValData(){
}
// Retrieve L1Topo CTP simulated overflows if present
const
DataHandle
<
LVL1
::
FrontPanelCTP
>
simTopoOverflowCTP
;
///! simulated overflow output
const
LVL1
::
FrontPanelCTP
*
simTopoOverflowCTP
=
nullptr
;
///! simulated overflow output
if
(
!
evtStore
()
->
contains
<
LVL1
::
FrontPanelCTP
>
(
m_simTopoOverflowCTPLocation
.
value
())
){
ATH_MSG_INFO
(
"Could not find LVL1::FrontPanelCTP with key "
<<
m_simTopoOverflowCTPLocation
.
value
()
<<
" in SG. No simulated overflow bits"
);
}
else
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment