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

MuonTrackSteeringTools: Fix clang warnings.

Missing override keywords.
parent c3dfaa16
6 merge requests!58791DataQualityConfigurations: Modify L1Calo config for web display,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!45405updated ART test cron job,!42417Draft: DIRE and VINCIA Base Fragments for Pythia 8.3,!39220MuonCombinedTrackFindingTools+MuonTrackFinderTools+MuonTrackSteeringTools: Fix clang warnings
......@@ -68,13 +68,13 @@ namespace Muon {
MooCandidateMatchingTool(const std::string&, const std::string&, const IInterface*);
/** destructor */
~MooCandidateMatchingTool();
virtual ~MooCandidateMatchingTool();
/** 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;
/** @brief access to tool interface */
static const InterfaceID& interfaceID() { return IID_MooCandidateMatchingTool; }
......@@ -89,7 +89,7 @@ namespace Muon {
bool match( const MuPatCandidateBase& entry1, const MuPatSegment& entry2, bool useTightCuts = false ) const;
/** @brief match a track with a segment */
bool match( const Trk::Track& track, const MuonSegment& segment, bool useTightCuts ) const;
virtual bool match( const Trk::Track& track, const MuonSegment& segment, bool useTightCuts ) const override;
/** @brief calculate the info needed for the matching decision */
void calculateTrackSegmentMatchResult( const MuPatTrack& entry1, const MuPatSegment& entry2, MooTrackSegmentMatchResult& info ) const;
......
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