Skip to content
Snippets Groups Projects
Commit 12cf7a77 authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

Merge branch 'clang.MdtCalibRt-20211007' into 'master'

MdtCalibRt+MdtCalibT0: Fix clang warnings.

See merge request atlas/athena!47028
parents 1aca7432 f0ecadeb
No related branches found
No related tags found
No related merge requests found
......@@ -175,7 +175,7 @@ namespace MuonCalib {
bool converged() const;
///< returns true, if the
///< autocalibration has converged
MdtCalibOutputPtr getResults() const;
virtual MdtCalibOutputPtr getResults() const override;
///< returns the final r-t relationship
private:
......
/*
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 T0CALIBRATIONCLASSIC_H
......@@ -132,8 +132,8 @@ namespace MuonCalib {
bool converged() const; //!< return m_converged (always false?)
/** @return the calibration results */
MdtCalibOutputPtr getResults() const;
MdtCalibOutputPtr analyseSegments(const MuonSegVec& segs); //!< new interface function
virtual MdtCalibOutputPtr getResults() const override;
virtual MdtCalibOutputPtr analyseSegments(const MuonSegVec& segs) override; //!< new interface function
private:
T0ClassicHistos* bookHistos(unsigned int idtube); //!< booking of histograms
......
/*
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 T0CALIBRATIONMT_H
......@@ -61,9 +61,9 @@ namespace MuonCalib {
/** @return the calibration results
*/
IMdtCalibration::MdtCalibOutputPtr getResults() const;
virtual IMdtCalibration::MdtCalibOutputPtr getResults() const override;
IMdtCalibration::MdtCalibOutputPtr analyseSegments(const MuonSegVec &segs); //!< new interface function
virtual IMdtCalibration::MdtCalibOutputPtr analyseSegments(const MuonSegVec &segs) override; //!< new interface function
private:
T0MTHistos *getHistos(const MuonFixedId &idtube, unsigned int nr); //!< retrieve pointer for tube idtube histograms
......
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