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
e24cdcf0
Commit
e24cdcf0
authored
9 years ago
by
Frank Gaede
Browse files
Options
Downloads
Patches
Plain Diff
added Coil (incl. units) to Gear files
parent
270bd72c
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
DDRec/src/gear/createGearForCLIC.cpp
+22
-3
22 additions, 3 deletions
DDRec/src/gear/createGearForCLIC.cpp
DDRec/src/gear/createGearForILD.cpp
+3
-3
3 additions, 3 deletions
DDRec/src/gear/createGearForILD.cpp
with
25 additions
and
6 deletions
DDRec/src/gear/createGearForCLIC.cpp
+
22
−
3
View file @
e24cdcf0
...
...
@@ -240,7 +240,26 @@ namespace DD4hep{
}
//============================================================================================
try
{
DetElement
coilDE
=
lcdd
.
detector
(
"Solenoid"
)
;
gear
::
GearParametersImpl
*
gearCOIL
=
new
gear
::
GearParametersImpl
();
Tube
coilTube
=
Tube
(
coilDE
.
volume
().
solid
()
)
;
gearCOIL
->
setDoubleVal
(
"Coil_cryostat_outer_radius"
,
coilTube
->
GetRmin
()
/
dd4hep
::
mm
)
;
gearCOIL
->
setDoubleVal
(
"Coil_cryostat_inner_radius"
,
coilTube
->
GetRmax
()
/
dd4hep
::
mm
)
;
gearCOIL
->
setDoubleVal
(
"Coil_cryostat_half_z"
,
coilTube
->
GetDZ
()
/
dd4hep
::
mm
)
;
coilDE
.
addExtension
<
GearHandle
>
(
new
GearHandle
(
gearCOIL
,
"CoilParameters"
)
)
;
}
catch
(
std
::
runtime_error
&
e
){
std
::
cerr
<<
" >>>> "
<<
e
.
what
()
<<
std
::
endl
;
}
//============================================================================================
try
{
DetElement
tubeDE
=
lcdd
.
detector
(
"Tube"
)
;
...
...
@@ -289,13 +308,13 @@ namespace DD4hep{
caloMap
[
"HCalBarrel"
]
=
"HcalBarrelParameters"
;
caloMap
[
"ECalBarrel"
]
=
"EcalBarrelParameters"
;
caloMap
[
"ECalEndcap"
]
=
"EcalEndcapParameters"
;
//
caloMap["ECalPlug"] = "EcalPlugParameters" ;
caloMap
[
"ECalPlug"
]
=
"EcalPlugParameters"
;
caloMap
[
"YokeBarrel"
]
=
"YokeBarrelParameters"
;
caloMap
[
"YokeEndcap"
]
=
"YokeEndcapParameters"
;
//
caloMap["YokePlug"] = "YokePlugParameters" ;
caloMap
[
"YokePlug"
]
=
"YokePlugParameters"
;
caloMap
[
"HCalBarrel"
]
=
"HcalBarrelParameters"
;
caloMap
[
"HCalEndcap"
]
=
"HcalEndcapParameters"
;
//
caloMap["HCalRing"] = "HcalRingParameters" ;
caloMap
[
"HCalRing"
]
=
"HcalRingParameters"
;
caloMap
[
"LumiCal"
]
=
"LcalParameters"
;
// caloMap["LHCal"] = "LHcalParameters" ;
caloMap
[
"BeamCal"
]
=
"BeamCalParameters"
;
...
...
This diff is collapsed.
Click to expand it.
DDRec/src/gear/createGearForILD.cpp
+
3
−
3
View file @
e24cdcf0
...
...
@@ -276,9 +276,9 @@ namespace DD4hep{
Tube
coilTube
=
Tube
(
coilDE
.
volume
().
solid
()
)
;
gearCOIL
->
setDoubleVal
(
"Coil_cryostat_outer_radius"
,
coilTube
->
GetRmin
()
)
;
gearCOIL
->
setDoubleVal
(
"Coil_cryostat_inner_radius"
,
coilTube
->
GetRmax
()
)
;
gearCOIL
->
setDoubleVal
(
"Coil_cryostat_half_z"
,
coilTube
->
GetDZ
()
)
;
gearCOIL
->
setDoubleVal
(
"Coil_cryostat_outer_radius"
,
coilTube
->
GetRmin
()
/
dd4hep
::
mm
)
;
gearCOIL
->
setDoubleVal
(
"Coil_cryostat_inner_radius"
,
coilTube
->
GetRmax
()
/
dd4hep
::
mm
)
;
gearCOIL
->
setDoubleVal
(
"Coil_cryostat_half_z"
,
coilTube
->
GetDZ
()
/
dd4hep
::
mm
)
;
coilDE
.
addExtension
<
GearHandle
>
(
new
GearHandle
(
gearCOIL
,
"CoilParameters"
)
)
;
...
...
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