Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review 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
atlas
athena
Merge requests
!74874
D3PDMaker: migrate to auto-declaring interfaces
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
D3PDMaker: migrate to auto-declaring interfaces
fwinkl/athena:d3pdmaker
into
main
Overview
4
Commits
2
Pipelines
1
Changes
10
Merged
Frank Winklmeier
requested to merge
fwinkl/athena:d3pdmaker
into
main
6 months ago
Overview
4
Commits
2
Pipelines
1
Changes
10
Expand
Migrate to auto-declaring interfaces. Also fix usage of deprecated service APIs.
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
a12aed6b
2 commits,
6 months ago
10 files
+
24
−
116
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
10
Search (e.g. *.vue) (Ctrl+P)
PhysicsAnalysis/D3PDMaker/D3PDMakerReader/src/apps/d3pdReaderMaker.cxx
+
3
−
3
Options
/*
Copyright (C) 2002-202
2
CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-202
4
CERN for the benefit of the ATLAS collaboration
*/
@@ -92,8 +92,8 @@ int main ATLAS_NOT_THREAD_SAFE ( int argc, char* argv[] ) {
// Force the Gaudi MessageSvc into existence. This gets rid of the
// warnings from getMessageSvc().
IMessageSvc
*
msvc
=
0
;
if
(
Gaudi
::
svcLocator
()
->
service
(
"MessageSvc"
,
msvc
,
true
).
isFailure
()
)
{
SmartIF
<
IMessageSvc
>
msvc
{
Gaudi
::
svcLocator
()
->
service
(
"MessageSvc"
)}
;
if
(
!
msvc
)
{
REPORT_MESSAGE_WITH_CONTEXT
(
MSG
::
ERROR
,
"d3pdReaderMaker"
)
<<
"Couldn't set up the Gaudi message service"
;
return
255
;
Loading