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

LArCafJobs: Fix clang warnings.

Missing override keywords.
parent ef637f3a
No related branches found
No related tags found
No related merge requests found
......@@ -30,10 +30,10 @@ class LArShapeDumperTool : public AthAlgTool, public virtual ILArShapeDumperTool
StatusCode initialize() override;
StatusCode finalize() override;
virtual LArSamples::CellInfo* makeCellInfo(const HWIdentifier& channelID, const Identifier& id, const CaloDetDescrElement* caloDetElement = 0) const;
virtual LArSamples::ShapeInfo* retrieveShape(const HWIdentifier& channelID, CaloGain::CaloGain gain) const;
virtual LArSamples::CellInfo* makeCellInfo(const HWIdentifier& channelID, const Identifier& id, const CaloDetDescrElement* caloDetElement = 0) const override;
virtual LArSamples::ShapeInfo* retrieveShape(const HWIdentifier& channelID, CaloGain::CaloGain gain) const override;
bool doShape() const { return m_doShape; }
virtual bool doShape() const override { return m_doShape; }
private:
......
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