Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
DD4hep
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cepc
externals
mirroring
DD4hep
Commits
2a0163de
Commit
2a0163de
authored
10 months ago
by
Andre Sailer
Browse files
Options
Downloads
Patches
Plain Diff
Geant4Handle: correct error message when casting does not work
parent
121eb94e
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
DDG4/src/Geant4Handle.cpp
+3
-2
3 additions, 2 deletions
DDG4/src/Geant4Handle.cpp
with
3 additions
and
2 deletions
DDG4/src/Geant4Handle.cpp
+
3
−
2
View file @
2a0163de
...
...
@@ -88,8 +88,9 @@ namespace dd4hep {
if
(
ptr
)
{
return
ptr
;
}
except
(
"Geant4Handle"
,
"Failed to convert object of type %s to handle of type %s!"
,
typ
.
first
.
c_str
(),
typ
.
second
.
c_str
());
std
::
string
_t
=
typeName
(
typeid
(
TYPE
));
except
(
"Geant4Handle"
,
"Failed to convert object of type '%s' with name '%s' to handle of type '%s'!"
,
typ
.
first
.
c_str
(),
typ
.
second
.
c_str
(),
_t
.
c_str
());
}
except
(
"Geant4Handle"
,
"Failed to create object of type %s!"
,
typ
.
first
.
c_str
());
return
0
;
...
...
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