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
!71481
xAOD Hgtd cluster: propagate time error to covariance matrix
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
xAOD Hgtd cluster: propagate time error to covariance matrix
cvarni/athena:CorrectTimeVarianceForHgtdClusters
into
main
Overview
3
Commits
1
Pipelines
1
Changes
1
Merged
Carlo Varni
requested to merge
cvarni/athena:CorrectTimeVarianceForHgtdClusters
into
main
10 months ago
Overview
3
Commits
1
Pipelines
1
Changes
1
Expand
@aleopold
I think this was a bug. Can you confirm this is reasonable?
1
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
c696eda8
1 commit,
10 months ago
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
InnerDetector/InDetMeasurementUtilities/src/ClusterConversionUtilities.cxx
+
2
−
2
Options
@@ -39,7 +39,7 @@ namespace TrackingUtilities {
Eigen
::
Matrix
<
float
,
3
,
3
>
localCovariance
=
Eigen
::
Matrix
<
float
,
3
,
3
>::
Zero
();
localCovariance
(
0
,
0
)
=
localCov
(
0
,
0
);
localCovariance
(
1
,
1
)
=
localCov
(
1
,
1
);
localCovariance
(
2
,
2
)
=
timeResolution
;
localCovariance
(
2
,
2
)
=
timeResolution
*
timeResolution
;
xaodCluster
.
setMeasurement
<
3
>
(
idHash
,
localPosition
,
localCovariance
);
xaodCluster
.
setIdentifier
(
indetCluster
.
identify
().
get_compact
()
);
@@ -328,7 +328,7 @@ namespace TrackingUtilities {
errorMatrix
.
setIdentity
();
errorMatrix
.
fillSymmetric
(
0
,
0
,
xaodCluster
.
localCovariance
<
3
>
()(
0
,
0
));
errorMatrix
.
fillSymmetric
(
1
,
1
,
xaodCluster
.
localCovariance
<
3
>
()(
1
,
1
));
float
time_resolution
=
xaodCluster
.
localCovariance
<
3
>
()(
2
,
2
);
float
time_resolution
=
std
::
sqrt
(
xaodCluster
.
localCovariance
<
3
>
()(
2
,
2
)
)
;
double
etaWidth
=
1.3
;
double
phiWidth
=
1.3
;
Loading