Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
atlas
athena
Merge requests
!66640
Demote warning to debug in KalmanVertexOnJetAxisUpdator (
ATLASRECTS-7773
)
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Demote warning to debug in KalmanVertexOnJetAxisUpdator (
ATLASRECTS-7773
)
tstreble/athena:ATLASRECTS-7773
into
23.0
Overview
3
Commits
7
Pipelines
2
Changes
1
Merged
Thomas Strebler
requested to merge
tstreble/athena:ATLASRECTS-7773
into
23.0
1 year ago
Overview
3
Commits
7
Pipelines
2
Changes
1
Expand
Follow up to
!66377 (merged)
, which increased the frequency of warning messages
FYI
@jmaurer
0
0
Merge request reports
Compare
23.0
version 1
0a49a4a4
1 year ago
23.0 (base)
and
latest version
latest version
54301c23
7 commits,
1 year ago
version 1
0a49a4a4
6 commits,
1 year ago
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Tracking/TrkVertexFitter/TrkJetVxFitter/src/KalmanVertexOnJetAxisUpdator.cxx
+
2
−
2
Options
@@ -238,8 +238,8 @@ namespace Trk{
const
Amg
::
MatrixX
&
old_full_vrt_cov
=
myPosition
.
covariancePosition
();
Eigen
::
FullPivLU
<
Amg
::
MatrixX
>
lu_decomp
(
old_full_vrt_cov
);
if
(
!
lu_decomp
.
isInvertible
()){
ATH_MSG_
WARNIN
G
(
"The vertex-positions covariance matrix is not invertible"
);
ATH_MSG_
WARNIN
G
(
"The copy of initial vertex returned"
);
ATH_MSG_
DEBU
G
(
"The vertex-positions covariance matrix is not invertible"
);
ATH_MSG_
DEBU
G
(
"The copy of initial vertex returned"
);
return
Trk
::
RecVertexPositions
(
myPosition
);
}
Loading