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

MuonTrackPerformance: Fix clang warnings.

clang warnings: missing override keywords.
parent 1fe783b8
No related branches found
No related tags found
9 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,!28528Revert 63f845ae,!27054Atr20369 210,!26342Monopole: Handle fractionally charged particles,!20180MuonTrackPerformance: Fix clang warnings.
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
*/
#ifndef MUON_MuonRecoValidationTool_H
......@@ -52,10 +52,10 @@ namespace Muon {
~MuonRecoValidationTool();
/** @brief initialize method, method taken from bass-class AlgTool */
StatusCode initialize();
virtual StatusCode initialize() override;
/** @brief finialize method, method taken from bass-class AlgTool */
StatusCode finalize();
virtual StatusCode finalize() override;
/** add a new TrackParticle with it's muon system extension */
bool addTrackParticle( const xAOD::TrackParticle& indetTrackParticle, const MuonSystemExtension& muonSystemExtention ) override;
......@@ -84,7 +84,7 @@ namespace Muon {
Trk::Track* combinedTrack, int ntimes, float beta, float chi2ndof, int stage ) override;
/** incident service handle for EndEvent */
void handle(const Incident& inc);
virtual void handle(const Incident& inc) override;
private:
/** clear ntuples */
......
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