Skip to content
Snippets Groups Projects
Commit 89da29eb authored by scott snyder's avatar scott snyder
Browse files

MuonTrackSteeringTools: Another attempt to fix dangling Surface references.

finalize() is still to late to clean up the garbage in MuPatCandidateTool,
as we also clean stores in step.  Try moving deleting the garbage
to stop().

See ATLASRECTS-5843.
parent f879540a
No related branches found
No related tags found
No related merge requests found
......@@ -58,9 +58,13 @@ namespace Muon {
}
StatusCode MuPatCandidateTool::finalize() {
return StatusCode::SUCCESS;
}
StatusCode MuPatCandidateTool::stop() {
// Clean up all garbage now.
// If we leave it for the dtor, we may end up with dangling references
// If we leave it for later, we may end up with dangling references
// to Surface objects that have already been deleted.
for (CacheEntry& ent : m_cache) {
ent.cleanUp();
......
......@@ -65,13 +65,16 @@ namespace Muon {
MuPatCandidateTool(const std::string&, const std::string&, const IInterface*);
/** destructor */
~MuPatCandidateTool() = default;
virtual ~MuPatCandidateTool() = default;
/** initialize method, method taken from bass-class AlgTool */
StatusCode initialize();
virtual StatusCode initialize() override;
/** finialize method, method taken from bass-class AlgTool */
StatusCode finalize();
virtual StatusCode finalize() override;
/** stop method, used to clean up garbage */
virtual StatusCode stop() override;
/** @brief access to tool interface */
static const InterfaceID& interfaceID() { return IID_MuPatCandidateTool; }
......
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