Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
beomki-yeo committed Feb 22, 2024
1 parent 38e4514 commit 7bd8249
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/include/Acts/Seeding/EstimateTrackParamsFromSeed.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ std::optional<BoundVector> estimateTrackParamsFromSeed(
const ActsScalar R = circleCenter.norm();
ActsScalar invTanTheta =
local2.z() /
(2.f * R * std::asin(std::hypot(local2.x(), local2.y()) / 2.f * R));
(2.f * R * std::asin(std::hypot(local2.x(), local2.y()) / (2.f * R)));
// The momentum direction in the new frame (the center of the circle has the
// coordinate (-1.*A/(2*B), 1./(2*B)))
ActsScalar A = -circleCenter(0) / circleCenter(1);
Expand Down

0 comments on commit 7bd8249

Please sign in to comment.