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

Merge branch 'clang.AthExHive-20211116' into 'master'

AthExHive+MuonHoughPatternTools: Fix clang warnings.

See merge request !48291
parents b830e551 8d8bcd50
No related branches found
No related tags found
5 merge requests!69091Fix correlated smearing bug in JER in JetUncertainties in 22.0,!58791DataQualityConfigurations: Modify L1Calo config for web display,!51674Fixing hotSpotInHIST for Run3 HIST,!50012RecExConfig: Adjust log message levels from GetRunNumber and GetLBNumber,!48291AthExHive+MuonHoughPatternTools: Fix clang warnings.
...@@ -30,7 +30,7 @@ public: ...@@ -30,7 +30,7 @@ public:
virtual StatusCode initialize() override; virtual StatusCode initialize() override;
virtual StatusCode finalize() override; virtual StatusCode finalize() override;
void add(const std::string&, const unsigned int&); virtual void add(const std::string&, const unsigned int&) override;
private: private:
......
...@@ -38,9 +38,9 @@ namespace Muon { ...@@ -38,9 +38,9 @@ namespace Muon {
virtual ~MuonHoughPatternFinderTool(); virtual ~MuonHoughPatternFinderTool();
/** initialize */ /** initialize */
virtual StatusCode initialize(); virtual StatusCode initialize() override;
/** finalize */ /** finalize */
virtual StatusCode finalize(); virtual StatusCode finalize() override;
/** find patterns for a give set of MuonPrepData collections + optionally CSC /** find patterns for a give set of MuonPrepData collections + optionally CSC
* segment combinations */ * segment combinations */
......
/* /*
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
*/ */
#ifndef MUONHOUGHPATTERNTOOLS_MUONHOUGHPATTERNTOOL_H #ifndef MUONHOUGHPATTERNTOOLS_MUONHOUGHPATTERNTOOL_H
...@@ -37,7 +37,7 @@ public: ...@@ -37,7 +37,7 @@ public:
virtual std::unique_ptr<MuonPrdPatternCollection> getEtaMuonPatterns(MuonHoughPatternContainerShip& houghpatterns) const override; virtual std::unique_ptr<MuonPrdPatternCollection> getEtaMuonPatterns(MuonHoughPatternContainerShip& houghpatterns) const override;
/** creates houghpatterns, called from FinderTool */ /** creates houghpatterns, called from FinderTool */
MuonHoughPatternContainerShip emptyHoughPattern() const; virtual MuonHoughPatternContainerShip emptyHoughPattern() const override;
private: private:
/** method that builds the patterns */ /** method that builds the patterns */
......
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