Skip to content
Snippets Groups Projects
Commit 7b52ca29 authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'uninit.HGTD_RecToolInterfaces-20240304' into 'main'

HGTD_RecToolInterfaces: Potential use of uninitialized array.

See merge request atlas/athena!69472
parents e14efd15 fac4f1eb
No related branches found
No related tags found
No related merge requests found
......@@ -34,7 +34,7 @@ struct ExtensionObject {
std::array<std::unique_ptr<const Trk::TrackStateOnSurface>, 4> m_hits;
// truth info about primary hits left by the truth particles
// is kept independent of them being found during the track extension
std::array<const HGTD_Cluster*, 4> m_truth_primary_hits;
std::array<const HGTD_Cluster*, 4> m_truth_primary_hits = {nullptr, nullptr, nullptr, nullptr};
std::array<HGTD::ClusterTruthInfo, 4> m_truth_primary_info;
// point of extrapolation on HGTD layer closest to IP
float m_extrap_x = 0;
......
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