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
d85269fd
Commit
d85269fd
authored
9 years ago
by
Frank Gaede
Browse files
Options
Downloads
Patches
Plain Diff
- added BEAMPIPE and COIL to DetType
parent
b4ac80e0
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
DDCore/include/DD4hep/DetType.h
+6
-2
6 additions, 2 deletions
DDCore/include/DD4hep/DetType.h
with
6 additions
and
2 deletions
DDCore/include/DD4hep/DetType.h
+
6
−
2
View file @
d85269fd
...
...
@@ -51,8 +51,10 @@ namespace DD4hep {
ELECTROMAGNETIC
=
1
<<
11
,
HADRONIC
=
1
<<
12
,
MUON
=
1
<<
13
,
SUPPORT
=
1
<<
14
}
;
SUPPORT
=
1
<<
14
,
BEAMPIPE
=
1
<<
15
,
COIL
=
1
<<
16
}
;
/// default c'tor
...
...
@@ -110,6 +112,8 @@ namespace DD4hep {
if
(
t
.
is
(
DetType
::
HADRONIC
)
)
os
<<
"HADRONIC, "
;
if
(
t
.
is
(
DetType
::
MUON
)
)
os
<<
"MUON, "
;
if
(
t
.
is
(
DetType
::
SUPPORT
)
)
os
<<
"SUPPORT, "
;
if
(
t
.
is
(
DetType
::
BEAMPIPE
)
)
os
<<
"BEAMPIPE, "
;
if
(
t
.
is
(
DetType
::
COIL
)
)
os
<<
"COIL, "
;
return
os
;
}
...
...
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