Skip to content

Commit

Permalink
Fix CCVB outer disk boundary sized (#261) (#264)
Browse files Browse the repository at this point in the history
Previously, this was rMin -> rMax for the inner disks, and rMed -> rMax
for the outer disks. This has been changed to rMin -> rMed and rMin ->
rMax, respectively.
  • Loading branch information
paulgessinger authored Jun 17, 2020
1 parent 6e8a1ea commit 9cb1082
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Core/src/Geometry/CutoutCylinderVolumeBounds.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ void Acts::CutoutCylinderVolumeBounds::buildSurfaceBounds() {
m_outerCylinderBounds =
std::make_shared<CylinderBounds>(get(eMaxR), get(eHalfLengthZ));

m_innerDiscBounds = std::make_shared<RadialBounds>(get(eMinR), get(eMaxR));
m_innerDiscBounds = std::make_shared<RadialBounds>(get(eMinR), get(eMedR));

m_outerDiscBounds = std::make_shared<RadialBounds>(get(eMedR), get(eMaxR));
m_outerDiscBounds = std::make_shared<RadialBounds>(get(eMinR), get(eMaxR));
}

0 comments on commit 9cb1082

Please sign in to comment.