@@ -81,7 +81,7 @@ Acts::Vector3 Acts::ConeSurface::rotSymmetryAxis(
8181
8282Acts::RotationMatrix3 Acts::ConeSurface::referenceFrame (
8383 const GeometryContext& gctx, const Vector3& position,
84- const Vector3& /* unused */ ) const {
84+ const Vector3& /* momentum */ ) const {
8585 RotationMatrix3 mFrame ;
8686 // construct the measurement frame
8787 // measured Y is the local z axis
@@ -102,7 +102,7 @@ Acts::RotationMatrix3 Acts::ConeSurface::referenceFrame(
102102
103103Acts::Vector3 Acts::ConeSurface::localToGlobal (
104104 const GeometryContext& gctx, const Vector2& lposition,
105- const Vector3& /* unused */ ) const {
105+ const Vector3& /* momentum */ ) const {
106106 // create the position in the local 3d frame
107107 double r = lposition[Acts::eBoundLoc1] * bounds ().tanAlpha ();
108108 double phi = lposition[Acts::eBoundLoc0] / r;
@@ -112,7 +112,7 @@ Acts::Vector3 Acts::ConeSurface::localToGlobal(
112112
113113Acts::Result<Acts::Vector2> Acts::ConeSurface::globalToLocal (
114114 const GeometryContext& gctx, const Vector3& position,
115- const Vector3& /* unused */ , double tolerance) const {
115+ const Vector3& /* momentum */ , double tolerance) const {
116116 Vector3 loc3Dframe = transform (gctx).inverse () * position;
117117 double r = loc3Dframe.z () * bounds ().tanAlpha ();
118118 if (std::abs (perp (loc3Dframe) - r) > tolerance) {
0 commit comments