Skip to content

Commit

Permalink
pr feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
andiwand committed Oct 28, 2023
1 parent 34eda31 commit 3fe62d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CI/physmon/workflows/physmon_track_finding_ttbar.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
with tempfile.TemporaryDirectory() as temp:
s = acts.examples.Sequencer(
events=3,
numThreads=1,
numThreads=-1,
logLevel=acts.logging.INFO,
)

Expand Down
4 changes: 1 addition & 3 deletions Core/include/Acts/TrackFitting/detail/GsfUtils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -194,9 +194,7 @@ void computePosteriorWeights(
.data(),
state.predictedCovariance(), state.projector(), state.calibratedSize());

// MARK: fpeMaskBegin(FLTUND, 1, #2589)
const auto factor = std::sqrt(1. / detR) * std::exp(-0.5 * chi2);
// MARK: fpeMaskEnd(FLTUND)
const auto factor = std::sqrt(1. / detR) * safeExp(-0.5 * chi2);

// If something is not finite here, just leave the weight as it is
if (std::isfinite(factor)) {
Expand Down

0 comments on commit 3fe62d0

Please sign in to comment.