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
8781a4bc
Commit
8781a4bc
authored
10 years ago
by
Frank Gaede
Browse files
Options
Downloads
Patches
Plain Diff
- fixed issue with ambigous reference to long64
parent
4d55fe96
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
UtilityApps/src/test_surfaces.cpp
+2
-2
2 additions, 2 deletions
UtilityApps/src/test_surfaces.cpp
with
2 additions
and
2 deletions
UtilityApps/src/test_surfaces.cpp
+
2
−
2
View file @
8781a4bc
...
...
@@ -52,7 +52,7 @@ int main(int argc, char** argv ){
const
SurfaceList
&
sL
=
surfMan
.
surfaceList
()
;
// map of surfaces
std
::
map
<
long64
,
Surface
*
>
surfMap
;
std
::
map
<
DD4hep
::
long64
,
Surface
*
>
surfMap
;
for
(
SurfaceList
::
const_iterator
it
=
sL
.
begin
()
;
it
!=
sL
.
end
()
;
++
it
){
...
...
@@ -104,7 +104,7 @@ int main(int argc, char** argv ){
SimTrackerHit
*
sHit
=
(
SimTrackerHit
*
)
col
->
getElementAt
(
i
)
;
long64
id
=
sHit
->
getCellID0
()
;
DD4hep
::
long64
id
=
sHit
->
getCellID0
()
;
idDecoder
.
setValue
(
id
)
;
// std::cout << " simhit with cellid : " << idDecoder << std::endl ;
...
...
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