Skip to content
Snippets Groups Projects
Commit 24aef416 authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

Merge branch 'gcc11.TrkV0Fitter-20201217' into 'master'

TrkV0Fitter: Fix gcc11 warnings.

See merge request atlas/athena!39267
parents 0c31e2cf 9ed0b35f
No related branches found
No related tags found
No related merge requests found
......@@ -111,6 +111,7 @@ namespace Trk
xAOD::Vertex * TrkV0VertexFitter::fit(const std::vector<const xAOD::TrackParticle*>& vectorTrk) const
{
Amg::Vector3D tmpVtx;
tmpVtx.setZero();
return fit(vectorTrk, tmpVtx);
}
......@@ -205,6 +206,7 @@ namespace Trk
xAOD::Vertex * TrkV0VertexFitter::fit(const std::vector<const Trk::TrackParameters*>& originalPerigees) const
{
Amg::Vector3D tmpVtx;
tmpVtx.setZero();
return fit(originalPerigees, tmpVtx);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment