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
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
Yeonju Go
athena
Commits
aba29156
Commit
aba29156
authored
6 years ago
by
Margherita Spalla
Browse files
Options
Downloads
Patches
Plain Diff
additional ATH_CHECK added
Former-commit-id: 929be279c17e16b22e5cd591edeada7c11792c2c
parent
32c60e68
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
LArCalorimeter/LArMonTools/src/LArNoiseCorrelationMon.cxx
+3
-10
3 additions, 10 deletions
LArCalorimeter/LArMonTools/src/LArNoiseCorrelationMon.cxx
with
3 additions
and
10 deletions
LArCalorimeter/LArMonTools/src/LArNoiseCorrelationMon.cxx
+
3
−
10
View file @
aba29156
...
@@ -141,12 +141,8 @@ LArNoiseCorrelationMon::initialize()
...
@@ -141,12 +141,8 @@ LArNoiseCorrelationMon::initialize()
/** Get bad-channel mask (only if jO IgnoreBadChannels is true)*/
/** Get bad-channel mask (only if jO IgnoreBadChannels is true)*/
if
(
m_ignoreKnownBadChannels
)
{
if
(
m_ignoreKnownBadChannels
)
{
sc
=
m_badChannelMask
.
retrieve
();
ATH_CHECK
(
m_badChannelMask
.
retrieve
());
if
(
sc
.
isFailure
())
{
ATH_MSG_ERROR
(
"Could not retrieve BadChannelMask"
<<
m_badChannelMask
);
return
StatusCode
::
FAILURE
;
}
}
}
/** Retrieve pedestals container*/
/** Retrieve pedestals container*/
...
@@ -227,10 +223,7 @@ LArNoiseCorrelationMon::fillHistograms()
...
@@ -227,10 +223,7 @@ LArNoiseCorrelationMon::fillHistograms()
/**EventID is a part of EventInfo, search event informations:*/
/**EventID is a part of EventInfo, search event informations:*/
const
xAOD
::
EventInfo
*
thisEvent
;
const
xAOD
::
EventInfo
*
thisEvent
;
if
(
evtStore
()
->
retrieve
(
thisEvent
).
isFailure
())
{
ATH_CHECK
(
evtStore
()
->
retrieve
(
thisEvent
));
ATH_MSG_ERROR
(
"Failed to retrieve EventInfo object"
);
return
StatusCode
::
FAILURE
;
}
m_evtId
=
thisEvent
->
eventNumber
();
m_evtId
=
thisEvent
->
eventNumber
();
ATH_MSG_DEBUG
(
"Event nb "
<<
m_evtId
);
ATH_MSG_DEBUG
(
"Event nb "
<<
m_evtId
);
...
...
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