Skip to content
Snippets Groups Projects

MuonRIO_OnTrackCreators: Fix clang warnings.

1 file
+ 5
5
Compare changes
  • Side-by-side
  • Inline
/*
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
*/
///////////////////////////////////////////////////////////////////
@@ -33,7 +33,7 @@ namespace Muon {
public:
MuonClusterOnTrackCreator(const std::string&, const std::string&, const IInterface*);
virtual ~MuonClusterOnTrackCreator() = default;
virtual StatusCode initialize();
virtual StatusCode initialize() override;
/** @brief Create new Muon::MuonClusterOnTrack from a Trk::PrepRawData and a predicted Trk::TrackParameter.
@param RIO Trk::PrepRawData object to be calibrated
@@ -41,7 +41,7 @@ namespace Muon {
@return a pointer to a new Muon::MuonClusterOnTrack object, zero if calibration failed.
The ownership of the new Muon::MuonClusterOnTrack is passed to the client calling the tool
*/
virtual const MuonClusterOnTrack* createRIO_OnTrack(const Trk::PrepRawData& RIO, const Amg::Vector3D& GP) const;
virtual const MuonClusterOnTrack* createRIO_OnTrack(const Trk::PrepRawData& RIO, const Amg::Vector3D& GP) const override;
/** @brief Create new Muon::MuonClusterOnTrack from a Trk::PrepRawData and a prediction of the global position and direction.
It is only implemented for the CSCs, for RPC and TGC Trk::PrepRawData the result is the same as for the routine without the
@@ -53,7 +53,7 @@ namespace Muon {
The ownership of the new Muon::MuonClusterOnTrack is passed to the client calling the tool
*/
virtual const MuonClusterOnTrack* createRIO_OnTrack(const Trk::PrepRawData& RIO, const Amg::Vector3D& GP,
const Amg::Vector3D& GD) const;
const Amg::Vector3D& GD) const override;
/** @brief Create new Muon::MuonClusterOnTrack from a Trk::PrepRawData and the predicted Trk::TrackParameter at the measurement
surface.
@@ -62,7 +62,7 @@ namespace Muon {
@return a pointer to a new Muon::MuonClusterOnTrack object, zero if calibration failed.
The ownership of the new Muon::MuonClusterOnTrack is passed to the client calling the tool
*/
virtual const MuonClusterOnTrack* correct(const Trk::PrepRawData& RIO, const Trk::TrackParameters& TP) const;
virtual const MuonClusterOnTrack* correct(const Trk::PrepRawData& RIO, const Trk::TrackParameters& TP) const override;
/** @brief Create new Muon::MuonClusterOnTrack from a Trk::PrepRawData and a predicted Trk::TrackParameter.
Loading