Skip to content
Snippets Groups Projects
Commit 5c81a5f0 authored by Paul Gessinger's avatar Paul Gessinger
Browse files

Fix wrongly extracted ID radii

parent 0b1b19ac
No related branches found
No related tags found
No related merge requests found
...@@ -396,8 +396,8 @@ ActsCaloTrackingVolumeBuilder::makeCaloVolumeBounds(const std::vector<std::uniqu ...@@ -396,8 +396,8 @@ ActsCaloTrackingVolumeBuilder::makeCaloVolumeBounds(const std::vector<std::uniqu
auto idCylBds auto idCylBds
= dynamic_cast<const Acts::CylinderVolumeBounds*>(&insideVolume->volumeBounds()); = dynamic_cast<const Acts::CylinderVolumeBounds*>(&insideVolume->volumeBounds());
double idRMax = idCylBds->get(CVBBV::eMinR); double idRMax = idCylBds->get(CVBBV::eMaxR);
double idRMin = idCylBds->get(CVBBV::eMaxR); double idRMin = idCylBds->get(CVBBV::eMinR);
double idHlZ = idCylBds->get(CVBBV::eHalfLengthZ); double idHlZ = idCylBds->get(CVBBV::eHalfLengthZ);
if (!insideVolume->transform().isApprox(Acts::Transform3D::Identity())) { if (!insideVolume->transform().isApprox(Acts::Transform3D::Identity())) {
......
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