Skip to content

Commit

Permalink
dummy change
Browse files Browse the repository at this point in the history
  • Loading branch information
paulgessinger committed Jun 20, 2024
1 parent 2ac97d2 commit 276c973
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Core/src/Geometry/TrackingVolume.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,9 @@ const Acts::Layer* TrackingVolume::associatedLayer(
const GeometryContext& /*gctx*/, const Vector3& position) const {
// confined static layers - highest hierarchy
if (m_confinedLayers != nullptr) {
return (m_confinedLayers->object(position).get());
// some dummy change
auto ret = (m_confinedLayers->object(position).get());
return ret;
}

// return the null pointer
Expand Down

0 comments on commit 276c973

Please sign in to comment.