10 #include <GeoModelKernel/GeoTube.h>
11 #include <GeoModelKernel/GeoVPhysVol.h>
16 #include <Acts/Definitions/Units.hpp>
17 #include <Acts/Geometry/Blueprint.hpp>
18 #include <Acts/Geometry/BlueprintNode.hpp>
19 #include <Acts/Geometry/ContainerBlueprintNode.hpp>
20 #include <Acts/Geometry/CylinderVolumeBounds.hpp>
21 #include <Acts/Geometry/Extent.hpp>
22 #include <Acts/Geometry/GeometryIdentifierBlueprintNode.hpp>
23 #include <Acts/Geometry/LayerBlueprintNode.hpp>
24 #include <Acts/Geometry/MaterialDesignatorBlueprintNode.hpp>
25 #include <Acts/Geometry/ProtoLayer.hpp>
26 #include <Acts/Geometry/VolumeAttachmentStrategy.hpp>
27 #include "Acts/Geometry/VolumeResizeStrategy.hpp"
28 #include "Acts/Material/HomogeneousSurfaceMaterial.hpp"
29 #include <Acts/Navigation/SurfaceArrayNavigationPolicy.hpp>
30 #include <Acts/Surfaces/SurfaceArray.hpp>
31 #include <Acts/Navigation/TryAllNavigationPolicy.hpp>
32 #include <Acts/Utilities/AxisDefinitions.hpp>
48 using namespace Acts::UnitLiterals;
53 constexpr std::size_t s_stripVolumeId = 20;
54 constexpr std::size_t s_innerPixelVolumeId = 5;
55 constexpr std::size_t s_outerPixelVolumeId = 10;
56 constexpr std::size_t s_beamPipeVolumeId = 1;
58 using enum Acts::CylinderVolumeBounds::Face;
59 using enum Acts::AxisDirection;
60 using enum Acts::AxisBoundaryType;
62 using AttachmentStrategy = Acts::VolumeAttachmentStrategy;
63 using ResizeStrategy = Acts::VolumeResizeStrategy;
66 std::vector<const Acts::Surface*> makeConstPtrVector(
67 const std::vector<std::shared_ptr<Acts::Surface>>& surfs) {
68 std::vector<const Acts::Surface*> constPtrs;
69 constPtrs.reserve(surfs.size());
70 for (
const auto& surf : surfs) {
71 constPtrs.push_back(surf.get());
78 Acts::ProtoLayer protoLayer;
79 std::vector<std::shared_ptr<Acts::Surface>> surfaces;
81 LayerData(
const Acts::GeometryContext& gctx,
82 std::vector<std::shared_ptr<Acts::Surface>> surfs)
83 : protoLayer(gctx, makeConstPtrVector(surfs)),
84 surfaces(std::move(surfs)) {}
88 std::vector<LayerData> mergeLayers(
const Acts::GeometryContext& gctx,
89 std::vector<LayerData>
layers) {
90 using enum Acts::AxisDirection;
92 std::vector<LayerData> mergedLayers;
97 mergedLayers.push_back(std::move(
layers.front()));
99 for (
size_t i = 1;
i <
layers.size();
i++) {
101 auto& prev = mergedLayers.back();
105 (
current.protoLayer.min(AxisZ) <= prev.protoLayer.max(AxisZ) &&
106 current.protoLayer.max(AxisZ) >= prev.protoLayer.min(AxisZ));
110 std::vector<std::shared_ptr<Acts::Surface>> mergedSurfaces;
111 mergedSurfaces.reserve(
current.surfaces.size() + prev.surfaces.size());
112 mergedSurfaces.insert(mergedSurfaces.end(),
current.surfaces.begin(),
114 mergedSurfaces.insert(mergedSurfaces.end(), prev.surfaces.begin(),
115 prev.surfaces.end());
117 mergedLayers.pop_back();
118 mergedLayers.emplace_back(gctx, std::move(mergedSurfaces));
119 auto& merged = mergedLayers.back();
120 merged.protoLayer.envelope[AxisR] =
current.protoLayer.envelope[AxisR];
121 merged.protoLayer.envelope[AxisZ] =
current.protoLayer.envelope[AxisZ];
123 mergedLayers.push_back(std::move(
current));
131 void addStripBarrelLayer(
132 Acts::Experimental::BlueprintNode&
parent, std::size_t ilayer,
133 const std::vector<std::shared_ptr<Acts::Surface>>& surfaces) {
135 using enum Acts::CylinderVolumeBounds::Face;
136 using enum Acts::AxisDirection;
137 using enum Acts::AxisBoundaryType;
139 auto addLayer = [ilayer, &surfaces](
auto&
node) {
141 layer.setNavigationPolicyFactory(
142 Acts::NavigationPolicyFactory{}
143 .add<Acts::SurfaceArrayNavigationPolicy>(
144 Acts::SurfaceArrayNavigationPolicy::Config{
145 .layerType =
Cylinder, .bins = {30, 10}})
146 .add<Acts::TryAllNavigationPolicy>(
147 Acts::TryAllNavigationPolicy::Config{.sensitives =
false})
150 layer.setSurfaces(surfaces);
151 layer.setEnvelope(Acts::ExtentEnvelope{{
161 [&addLayer](
auto& lmat) {
162 lmat.configureFace(OuterCylinder,
163 {AxisRPhi, Bound, 20},
172 void addStripEndcapLayer(
173 Acts::Experimental::BlueprintNode&
parent,
int bec,
const std::string&
name,
174 const std::vector<std::shared_ptr<Acts::Surface>>& surfaces) {
176 using enum Acts::CylinderVolumeBounds::Face;
177 using enum Acts::AxisDirection;
178 using enum Acts::AxisBoundaryType;
181 mat.configureFace(
bec < 0 ? NegativeDisc : PositiveDisc, {AxisR, Bound, 20},
182 {AxisPhi, Bound, 40});
185 layer.setNavigationPolicyFactory(
186 Acts::NavigationPolicyFactory{}
187 .add<Acts::SurfaceArrayNavigationPolicy>(
188 Acts::SurfaceArrayNavigationPolicy::Config{.layerType =
Disc,
190 .add<Acts::TryAllNavigationPolicy>(
191 Acts::TryAllNavigationPolicy::Config{.sensitives =
false})
194 layer.setSurfaces(surfaces);
195 layer.setEnvelope(Acts::ExtentEnvelope{{
196 .z = {0.1_mm, 0.1_mm},
209 if(m_buildBeamPipe) {
212 m_elementStore = std::make_shared<ActsElementVector>();
213 return StatusCode::SUCCESS;
217 std::shared_ptr<Acts::Experimental::BlueprintNode> ItkBlueprintNodeBuilder::buildBlueprintNode(
218 const Acts::GeometryContext& gctx, std::shared_ptr<Acts::Experimental::BlueprintNode>&& childNode) {
221 ATH_MSG_ERROR(
"Child node for the Calo should be null - no child expected");
222 throw std::runtime_error(
"Child node is not null");
225 auto itkNode = std::make_shared<Acts::Experimental::CylinderContainerBlueprintNode>(
"ItkNode", AxisR);
228 buildItkPixelBlueprintNode(gctx, *itkNode);
231 buildItkStripBlueprintNode(gctx, *itkNode);
234 if(m_buildBeamPipe) {
236 buildBeamPipeBlueprintNode(gctx, *itkNode);
243 void ItkBlueprintNodeBuilder::buildItkPixelBlueprintNode(
244 const Acts::GeometryContext& gctx, Acts::Experimental::BlueprintNode&
node) {
247 if (!m_itkPixelMgr) {
249 throw std::runtime_error(
"ITkPixel manager not available");
253 << m_itkPixelMgr->getDetectorElementCollection()->size()
256 std::vector<std::shared_ptr<ActsDetectorElement>> elements;
259 for (
const auto* element :
260 *m_itkPixelMgr->getDetectorElementCollection()) {
263 if (siDetElement ==
nullptr) {
265 throw std::runtime_error{
"Corrupt detector element collection"};
267 elements.push_back(std::make_shared<ActsDetectorElement>(*siDetElement));
272 m_elementStore->vector().insert(m_elementStore->vector().end(),
273 elements.begin(), elements.end());
276 node.addMaterial(
"InnerPixelMaterial", [&](
auto&
mat) {
277 mat.configureFace(OuterCylinder, {AxisRPhi, Bound, 20}, {AxisZ, Bound, 20});
279 auto& innerPixelContainer =
mat.addCylinderContainer(
"InnerPixel", AxisZ);
282 auto& barrelGeoId = innerPixelContainer.withGeometryIdentifier();
283 barrelGeoId.setAllVolumeIdsTo(s_innerPixelVolumeId)
284 .incrementLayerIds(1)
285 .sortBy([](
auto&
a,
auto&
b) {
287 dynamic_cast<const Acts::CylinderVolumeBounds&
>(
a.volumeBounds());
289 dynamic_cast<const Acts::CylinderVolumeBounds&
>(
b.volumeBounds());
291 using enum Acts::CylinderVolumeBounds::BoundValues;
292 double aMidR = (boundsA.get(eMinR) + boundsA.get(eMaxR)) / 2.0;
293 double bMidR = (boundsB.get(eMinR) + boundsB.get(eMaxR)) / 2.0;
295 return aMidR < bMidR;
298 auto& barrel = barrelGeoId.addCylinderContainer(
"InnerPixel_Brl", AxisR);
299 barrel.setAttachmentStrategy(AttachmentStrategy::Gap);
300 barrel.setResizeStrategy(ResizeStrategy::Gap);
302 std::map<int, std::vector<std::shared_ptr<Acts::Surface>>>
layers{};
304 for (
auto& element : elements) {
310 if (
id.layer_disk() >= 2) {
315 layers[elementLayer].push_back(element->surface().getSharedPtr());
320 for (
const auto& [ilayer, surfaces] :
layers) {
321 ATH_MSG_DEBUG(
"- Layer " << ilayer <<
" has " << surfaces.size()
325 std::format(
"InnerPixel_Brl_{}_Material", ilayer), [&](
auto& lmat) {
327 lmat.configureFace(OuterCylinder, {AxisRPhi, Bound, 40},
332 lmat.addLayer(
std::format(
"InnerPixel_Brl_{}", ilayer));
335 layer.setNavigationPolicyFactory(
336 Acts::NavigationPolicyFactory{}
337 .add<Acts::SurfaceArrayNavigationPolicy>(
338 Acts::SurfaceArrayNavigationPolicy::Config{
339 .layerType = Cylinder,
341 .add<Acts::TryAllNavigationPolicy>(
342 Acts::TryAllNavigationPolicy::Config{.sensitives =
346 layer.setSurfaces(surfaces);
347 layer.setEnvelope(Acts::ExtentEnvelope{{
355 for (
int bec : {-2, 2}) {
356 std::string
s =
bec > 0 ?
"p" :
"n";
357 auto& ecGeoId = innerPixelContainer.withGeometryIdentifier();
358 ecGeoId.setAllVolumeIdsTo(s_innerPixelVolumeId + std::floor(
bec / 2))
359 .incrementLayerIds(1);
360 auto& ec = ecGeoId.addCylinderContainer(
"InnerPixel_" +
s +
"EC", AxisZ);
361 ec.setAttachmentStrategy(AttachmentStrategy::Gap);
362 ec.setResizeStrategy(ResizeStrategy::Expand);
364 std::map<std::tuple<int, int, int>,
365 std::vector<std::shared_ptr<Acts::Surface>>>
368 for (
auto& element : elements) {
370 if (
id.
bec() *
bec <= 0) {
374 if (
id.layer_disk() >= 3) {
378 std::tuple<int, int, int>
key{
id.bec(),
id.layer_disk(),
380 initialLayers[
key].push_back(element->surface().getSharedPtr());
384 <<
" initial layers to InnerPixel " <<
s <<
"EC");
387 std::vector<LayerData> protoLayers;
388 protoLayers.reserve(initialLayers.size());
390 for (
const auto& [
key, surfaces] : initialLayers) {
391 auto&
layer = protoLayers.emplace_back(gctx, surfaces);
392 layer.protoLayer.envelope[AxisR] = {2_mm, 2_mm};
393 layer.protoLayer.envelope[AxisZ] = {1_mm, 1_mm};
397 std::ranges::sort(protoLayers,
398 [](
const LayerData&
a,
const LayerData&
b) {
399 return std::abs(
a.protoLayer.medium(AxisZ)) <
400 std::abs(
b.protoLayer.medium(AxisZ));
403 ATH_MSG_DEBUG(
"Found " << protoLayers.size() <<
" initial layers");
406 std::vector<LayerData> mergedLayers;
407 if (m_doEndcapLayerMerging) {
408 mergedLayers = mergeLayers(gctx, std::move(protoLayers));
410 mergedLayers = std::move(protoLayers);
413 ATH_MSG_DEBUG(
"After merging: " << mergedLayers.size() <<
" layers");
416 for (
const auto [
key, pl] : Acts::enumerate(mergedLayers)) {
420 pl.protoLayer.medium(AxisZ);
423 auto addLayer = [&layerName, &pl](
auto&
parent) {
428 layer.setNavigationPolicyFactory(
429 Acts::NavigationPolicyFactory{}
430 .add<Acts::SurfaceArrayNavigationPolicy>(
431 Acts::SurfaceArrayNavigationPolicy::Config{
434 .add<Acts::TryAllNavigationPolicy>(
435 Acts::TryAllNavigationPolicy::Config{.sensitives =
false})
438 layer.setSurfaces(pl.surfaces);
439 layer.setEnvelope(Acts::ExtentEnvelope{{
446 <<
key <<
" / " << mergedLayers.size()
447 <<
" at z = " << pl.protoLayer.medium(AxisZ));
448 if (
key < mergedLayers.size() - 1) {
451 ec.addMaterial(layerName +
"_Material", [&](
auto& lmat) {
453 lmat.configureFace(
bec < 0 ? NegativeDisc : PositiveDisc,
454 {AxisR, Bound, 40}, {AxisPhi, Bound, 40});
465 node.addMaterial(
"OuterPixelMaterial", [&](
auto&
mat) {
466 mat.configureFace(OuterCylinder, {AxisRPhi, Bound, 20}, {AxisZ, Bound, 20});
468 auto& outerPixelContainer =
mat.addCylinderContainer(
"OuterPixel", AxisZ);
471 auto& barrelGeoId = outerPixelContainer.withGeometryIdentifier();
472 barrelGeoId.setAllVolumeIdsTo(s_outerPixelVolumeId).incrementLayerIds(1);
474 auto& barrel = barrelGeoId.addCylinderContainer(
"OuterPixel_Brl", AxisR);
475 barrel.setAttachmentStrategy(AttachmentStrategy::Gap);
476 barrel.setResizeStrategy(ResizeStrategy::Gap);
478 std::map<int, std::vector<std::shared_ptr<Acts::Surface>>>
layers{};
480 for (
auto& element : elements) {
486 if (
id.layer_disk() <= 1) {
491 layers[elementLayer].push_back(element->surface().getSharedPtr());
496 for (
const auto& [ilayer, surfaces] :
layers) {
497 ATH_MSG_DEBUG(
"- Layer " << ilayer <<
" has " << surfaces.size()
501 std::format(
"OuterPixel_Brl_{}_Material", ilayer), [&](
auto& lmat) {
503 lmat.configureFace(OuterCylinder, {AxisRPhi, Bound, 40},
511 layer.setNavigationPolicyFactory(
512 Acts::NavigationPolicyFactory{}
513 .add<Acts::SurfaceArrayNavigationPolicy>(
514 Acts::SurfaceArrayNavigationPolicy::Config{
515 .layerType = Cylinder,
517 .add<Acts::TryAllNavigationPolicy>(
518 Acts::TryAllNavigationPolicy::Config{.sensitives =
522 layer.setSurfaces(surfaces);
523 layer.setEnvelope(Acts::ExtentEnvelope{{
530 constexpr
static auto addEndcapLayer = [](
auto&
parent,
const auto&
name,
531 const auto& surfaces) {
533 layer.setNavigationPolicyFactory(
534 Acts::NavigationPolicyFactory{}
535 .add<Acts::SurfaceArrayNavigationPolicy>(
536 Acts::SurfaceArrayNavigationPolicy::Config{
537 .layerType = Disc, .bins = {30, 30}})
538 .add<Acts::TryAllNavigationPolicy>(
539 Acts::TryAllNavigationPolicy::Config{.sensitives =
false})
542 layer.setSurfaces(surfaces);
547 for (
int bec : {-2, 2}) {
548 const std::string
s =
bec > 0 ?
"p" :
"n";
552 auto& ec_outer_geoId = outerPixelContainer.withGeometryIdentifier();
554 .setAllVolumeIdsTo(s_outerPixelVolumeId + std::floor(
bec / 2))
555 .incrementLayerIds(1);
558 ec_outer_geoId.addCylinderContainer(
"OuterPixel_" +
s +
"EC", AxisR);
561 std::array diskGroups{std::pair{3, 4}, std::pair{6, 5}, std::pair{7, 8}};
563 for (
size_t idx = 0;
idx < diskGroups.size(); ++
idx) {
564 auto [disk1, disk2] = diskGroups[
idx];
566 auto& ec_stack = ec_outer.addCylinderContainer(
569 ec_stack.setAttachmentStrategy(AttachmentStrategy::Gap);
570 ec_stack.setResizeStrategy(ResizeStrategy::Expand);
573 std::map<std::tuple<int, int>,
574 std::vector<std::shared_ptr<Acts::Surface>>>
577 for (
auto& element : elements) {
580 (
id.layer_disk() != disk1 &&
id.layer_disk() != disk2)) {
583 std::tuple<int, int>
key{
id.layer_disk(),
id.eta_module()};
584 eta_rings[
key].push_back(element->surface().getSharedPtr());
587 ATH_MSG_DEBUG(
"Found " << eta_rings.size() <<
" eta rings in group "
591 std::vector<std::vector<std::shared_ptr<Acts::Surface>>> sorted_rings;
592 sorted_rings.reserve(eta_rings.size());
593 for (
const auto& [
key, surfaces] : eta_rings) {
594 sorted_rings.push_back(surfaces);
597 std::ranges::sort(sorted_rings, [&gctx](
const auto&
a,
const auto&
b) {
598 Acts::ProtoLayer pl_a(gctx, makeConstPtrVector(
a));
599 Acts::ProtoLayer pl_b(gctx, makeConstPtrVector(
b));
600 return std::abs(pl_a.min(AxisZ)) < std::abs(pl_b.min(AxisZ));
604 for (
size_t i = 0;
i < sorted_rings.size(); ++
i) {
605 const auto& surfaces = sorted_rings[
i];
609 if (
i < sorted_rings.size() - 1) {
610 ec_stack.addMaterial(layerName +
"_Material", [&](
auto&
mat) {
611 mat.configureFace(
bec > 0 ? PositiveDisc : NegativeDisc,
612 {AxisR, Bound, 20}, {AxisPhi, Bound, 40});
613 addEndcapLayer(
mat, layerName, surfaces);
616 addEndcapLayer(ec_stack, layerName, surfaces);
625 void ItkBlueprintNodeBuilder::buildItkStripBlueprintNode(
const Acts::GeometryContext& gctx,
626 Acts::Experimental::BlueprintNode&
node) {
629 if (!m_itkStripMgr) {
631 throw std::runtime_error(
"ITkStrip manager not available");
635 << m_itkStripMgr->getDetectorElementCollection()->size()
638 std::vector<std::shared_ptr<ActsDetectorElement>> elements;
641 for (
const auto* element :
642 *m_itkStripMgr->getDetectorElementCollection()) {
645 if (siDetElement ==
nullptr) {
647 throw std::runtime_error{
"Corrupt detector element collection"};
649 elements.push_back(std::make_shared<ActsDetectorElement>(*siDetElement));
654 m_elementStore->vector().insert(m_elementStore->vector().end(),
655 elements.begin(), elements.end());
658 node.addMaterial(
"StripMaterial", [&](
auto&
mat) {
659 mat.configureFace(OuterCylinder, {AxisRPhi, Bound, 20}, {AxisZ, Bound, 20});
661 mat.addCylinderContainer(
"Strip", AxisZ, [&](
auto& strips) {
663 strips.withGeometryIdentifier([
this, &elements](
auto& geoId) {
664 geoId.setAllVolumeIdsTo(s_stripVolumeId).incrementLayerIds(1);
666 geoId.addCylinderContainer(
667 "Strip_Brl", AxisR, [
this, &elements](
auto& barrel) {
668 barrel.setAttachmentStrategy(AttachmentStrategy::Gap);
669 barrel.setResizeStrategy(ResizeStrategy::Gap);
671 std::map<int, std::vector<std::shared_ptr<Acts::Surface>>>
674 for (
auto& element : elements) {
681 layers[elementLayer].push_back(
682 element->surface().getSharedPtr());
686 <<
" layers to Strip barrel");
688 for (
const auto& [ilayer, surfaces] :
layers) {
689 ATH_MSG_DEBUG(
"- Layer " << ilayer <<
" has " << surfaces.size()
691 addStripBarrelLayer(barrel, ilayer, surfaces);
697 for (
int bec : {-2, 2}) {
698 const std::string
s =
bec > 0 ?
"p" :
"n";
700 std::map<int, std::vector<std::shared_ptr<Acts::Surface>>>
layers{};
702 for (
auto& element : elements) {
704 if (
id.
bec() *
bec <= 0) {
708 layers[
id.layer_disk()].push_back(element->surface().getSharedPtr());
715 std::vector<std::vector<std::shared_ptr<Acts::Surface>>> sorted_layers;
716 sorted_layers.reserve(
layers.size());
717 for (
const auto& [
key, surfaces] :
layers) {
718 sorted_layers.push_back(surfaces);
721 std::sort(sorted_layers.begin(), sorted_layers.end(),
722 [&gctx](
const auto&
a,
const auto&
b) {
723 Acts::ProtoLayer pl_a(gctx, makeConstPtrVector(a));
724 Acts::ProtoLayer pl_b(gctx, makeConstPtrVector(b));
725 return std::abs(pl_a.min(AxisZ)) <
726 std::abs(pl_b.min(AxisZ));
729 strips.withGeometryIdentifier([&sorted_layers,
bec, &
s](
auto& geoId) {
730 geoId.setAllVolumeIdsTo(s_stripVolumeId + std::floor(
bec / 2))
731 .incrementLayerIds(1);
733 geoId.addCylinderContainer(
734 "Strip_" +
s +
"EC", AxisZ, [&sorted_layers,
bec, &
s](
auto& ec) {
735 ec.setAttachmentStrategy(AttachmentStrategy::Gap);
736 ec.setResizeStrategy(ResizeStrategy::Gap);
739 for (
size_t i = 0;
i < sorted_layers.size(); ++
i) {
740 const auto& surfaces = sorted_layers[
i];
743 addStripEndcapLayer(ec,
bec, layerName, surfaces);
753 void ItkBlueprintNodeBuilder::buildBeamPipeBlueprintNode(
const Acts::GeometryContext& ,
754 Acts::Experimental::BlueprintNode&
node) {
758 PVConstLink beamPipeTopVolume = m_beamPipeMgr->getTreeTop(0);
759 if (m_beamPipeMgr->getNumTreeTops() == 1) {
761 m_beamPipeMgr->getTreeTop(0)->getChildVol(0)->getChildVol(0);
767 double beamPipeRadius = 20;
769 const GeoLogVol* beamPipeLogVolume = beamPipeTopVolume->getLogVol();
771 if (beamPipeLogVolume ==
nullptr) {
773 throw std::runtime_error(
"Beam pipe volume has no log volume");
777 const GeoTube* beamPipeTube =
778 dynamic_cast<const GeoTube*
>(beamPipeLogVolume->getShape());
779 if (beamPipeTube ==
nullptr) {
781 throw std::runtime_error{
"BeamPipeLogVolume was not of type GeoTube"};
785 for (
unsigned int i = 0;
i < beamPipeTopVolume->getNChildVols();
i++) {
786 auto childName = beamPipeTopVolume->getNameOfChildVol(
i);
787 if (childName !=
"SectionC03") {
790 PVConstLink childTopVolume = beamPipeTopVolume->getChildVol(
i);
791 const GeoLogVol* childLogVolume = childTopVolume->getLogVol();
792 const GeoTube* childTube =
793 dynamic_cast<const GeoTube*
>(childLogVolume->getShape());
795 beamPipeRadius = 0.5 * (childTube->getRMax() + childTube->getRMin());
803 "BeamPipe constructed from Database: translation (yes) - radius "
804 << (beamPipeTube ?
"(yes)" :
"(no)") <<
" - r = " << beamPipeRadius);
807 << beamPipeTransform.translation().transpose());
810 node.withGeometryIdentifier([&](
auto& geoId) {
811 geoId.setAllVolumeIdsTo(s_beamPipeVolumeId);
813 geoId.addMaterial(
"BeamPipe_Material", [&](
auto&
mat) {
814 mat.configureFace(OuterCylinder, {AxisRPhi, Bound, 20},
818 mat.addStaticVolume(beamPipeTransform,
819 std::make_shared<Acts::CylinderVolumeBounds>(
820 0, beamPipeRadius * 1_mm, 3 * 1_m),