Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
AtlasGaudi
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Container Registry
Model registry
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
Goetz Gaycken
AtlasGaudi
Commits
c7660e45
Commit
c7660e45
authored
7 years ago
by
Charles Leggett
Browse files
Options
Downloads
Plain Diff
Mute AlgContextSvc error
See merge request !130
parents
cbe090e9
29ac6c98
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
GaudiCommonSvc/src/AlgContextSvc.cpp
+11
-7
11 additions, 7 deletions
GaudiCommonSvc/src/AlgContextSvc.cpp
with
11 additions
and
7 deletions
GaudiCommonSvc/src/AlgContextSvc.cpp
+
11
−
7
View file @
c7660e45
...
...
@@ -183,13 +183,17 @@ void AlgContextSvc::handle ( const Incident& inc ) {
}
else
if
(
inc
.
type
()
==
"EndEvent"
){
m_inEvtLoop
[
currSlot
]
=
0
;
}
if
(
m_algorithms
.
get
()
&&
!
m_algorithms
->
empty
()
)
{
//skip incident processing algorithm endevent incident
if
((
m_algorithms
->
size
()
!=
1
)
||
(
m_algorithms
->
back
()
->
type
()
!=
"IncidentProcAlg"
)){
error
()
<<
"Non-empty stack of algorithms #"
<<
m_algorithms
->
size
()
<<
endmsg
;
}
}
// This check is invalidated with RTTI AlgContext object.
// Whole service needs to be rewritten. Commenting the error until then
// to prevent test failures.
// if ( m_algorithms.get() && !m_algorithms->empty() ) {
// //skip incident processing algorithm endevent incident
// if((m_algorithms->size()!=1) || (m_algorithms->back()->type()!="IncidentProcAlg")){
// error() << "Non-empty stack of algorithms #"
// << m_algorithms->size() << endmsg ;
// }
// }
}
// ============================================================================
// ============================================================================
...
...
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