Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
atlas
athena
Commits
54825101
Commit
54825101
authored
Feb 21, 2020
by
Walter Lampl
Browse files
Merge branch 'cbk/cleanup2-followup' into 'master'
Fix accidentally dropped mutex lock in CutFlowSvc See merge request
!30514
parents
d3f53149
81461fe7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Event/EventBookkeeperTools/src/CutFlowSvc.cxx
View file @
54825101
...
...
@@ -129,7 +129,7 @@ CutFlowSvc::addEvent( CutIdentifier cutID, double weight)
{
ATH_MSG_INFO
(
"Adding event with weight "
<<
weight
<<
"to cut "
<<
cutID
);
std
::
lock_guard
<
std
::
recursive_mutex
>
lock
();
std
::
lock_guard
<
std
::
recursive_mutex
>
lock
(
m_addEventMutex
);
xAOD
::
CutBookkeeper
*
cbk
=
getCutBookkeeper
(
cutID
);
if
(
cbk
==
nullptr
)
{
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment