Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
acts-core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
acts
acts-core
Commits
5ea701ba
Commit
5ea701ba
authored
5 years ago
by
Paul Gessinger
Committed by
Paul Gessinger
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
change KF aborter call operator signature
parent
a243daac
No related branches found
No related tags found
1 merge request
!681
KalmanFitter uses Acts::Result
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Core/include/Acts/Fitter/KalmanFitter.hpp
+2
-2
2 additions, 2 deletions
Core/include/Acts/Fitter/KalmanFitter.hpp
with
2 additions
and
2 deletions
Core/include/Acts/Fitter/KalmanFitter.hpp
+
2
−
2
View file @
5ea701ba
...
...
@@ -399,8 +399,8 @@ class KalmanFitter {
template
<
typename
propagator_state_t
,
typename
stepper_t
,
typename
result_t
>
bool
operator
()(
const
result_t
&
result
,
propagator_state_t
&
/*state*/
,
const
stepper_t
&
/*stepper*/
)
const
{
bool
operator
()(
propagator_state_t
&
/*state*/
,
const
stepper_t
&
/*stepper*/
,
const
result_t
&
result
)
const
{
if
(
!
result
.
result
.
ok
())
{
return
true
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment