Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
Tulay Cuhadar Donszelmann
athena
Commits
e652c782
Commit
e652c782
authored
8 years ago
by
Christian Ohm
Committed by
Graeme Stewart
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Adding missing cov. matrices for output vertices (VrtSecInclusive-00-04-21)
* Tagging as VrtSecInclusive-00-04-21 2016-10-20 Christian Ohm
parent
aadf0815
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Reconstruction/VKalVrt/VrtSecInclusive/src/VertexingAlgs.cxx
+3
-1
3 additions, 1 deletion
Reconstruction/VKalVrt/VrtSecInclusive/src/VertexingAlgs.cxx
with
3 additions
and
1 deletion
Reconstruction/VKalVrt/VrtSecInclusive/src/VertexingAlgs.cxx
+
3
−
1
View file @
e652c782
...
@@ -712,11 +712,13 @@ namespace VKalVrtAthena {
...
@@ -712,11 +712,13 @@ namespace VKalVrtAthena {
// Registering the vertex type: SV
// Registering the vertex type: SV
vertex
->
setVertexType
(
xAOD
::
VxType
::
SecVtx
);
vertex
->
setVertexType
(
xAOD
::
VxType
::
SecVtx
);
// Registering the vertex chi2 and Ndof
// Registering the vertex chi2 and Ndof
int
ndof
=
2
*
WrkVrt
.
SelTrk
.
size
()
-
3
;
int
ndof
=
2
*
WrkVrt
.
SelTrk
.
size
()
-
3
;
vertex
->
setFitQuality
(
WrkVrt
.
Chi2
,
ndof
);
vertex
->
setFitQuality
(
WrkVrt
.
Chi2
,
ndof
);
// Registering the vertex covariance matrix
std
::
vector
<
float
>
fCov
(
WrkVrt
.
vertexCov
.
cbegin
(),
WrkVrt
.
vertexCov
.
cend
());
vertex
->
setCovariance
(
fCov
);
// Registering the vertex momentum and charge
// Registering the vertex momentum and charge
vertex
->
auxdata
<
float
>
(
"vtx_px"
)
=
WrkVrt
.
vertexMom
.
Px
();
vertex
->
auxdata
<
float
>
(
"vtx_px"
)
=
WrkVrt
.
vertexMom
.
Px
();
...
...
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