Skip to content
Snippets Groups Projects
Commit 7baff3d4 authored by Walter Lampl's avatar Walter Lampl
Browse files

add missing virtual keyword to cleanUp() method

parent b702676d
No related branches found
No related tags found
No related merge requests found
......@@ -32,7 +32,7 @@ namespace Muon {
The caller should ensure the track gets deleted. */
virtual bool match( const Trk::Track& track, const MuonSegment& segment, bool useTightCuts = false ) const = 0;
void cleanUp() const {};
virtual void cleanUp() const {};
};
inline const InterfaceID& IMuonTrackSegmentMatchingTool::interfaceID()
......
......@@ -28,7 +28,7 @@ namespace Muon {
/** @brief build a track out of a MuonCandidate */
virtual Trk::Track* buildCombinedTrack( const Trk::Track& idTrack, const MuonCandidate& candidate ) const = 0;
void cleanUp() const {};
virtual void cleanUp() const {};
};
......
......@@ -73,7 +73,7 @@ namespace Muon {
/**IMuonCandidateTrackBuilderTool interface: buildCombinedTrack */
Trk::Track* buildCombinedTrack( const Trk::Track& idTrack, const MuonCandidate& candidate ) const;
void cleanUp() const;
virtual void cleanUp() const override;
private:
ToolHandle<IMuonSegmentTrackBuilder> m_muonTrackBuilder{this,"MuonSegmentTrackBuilder","Muon::MooTrackBuilder/MooMuonTrackBuilder"};
......
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