Skip to content
Snippets Groups Projects
Commit e24cdcf0 authored by Frank Gaede's avatar Frank Gaede
Browse files

added Coil (incl. units) to Gear files

parent 270bd72c
No related branches found
No related tags found
No related merge requests found
......@@ -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" ;
......
......@@ -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" ) ) ;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment