Skip to content
Snippets Groups Projects
Commit 81f5485b authored by Scott Snyder's avatar Scott Snyder Committed by Graeme Stewart
Browse files

'Changing constness of some interfaces, to deal with tool handle constness...

'Changing constness of some interfaces, to deal with tool handle constness changes.' (MuonCombinedToolInterfaces-01-02-09)

	* Tagging MuonCombinedToolInterfaces-01-02-09.
	* Changing constness of some interfaces, to deal with tool handle
	constness changes.
parent a365c99e
No related branches found
No related tags found
No related merge requests found
...@@ -28,7 +28,7 @@ namespace MuonCombined { ...@@ -28,7 +28,7 @@ namespace MuonCombined {
/**IMuonCandidateTool interface: build a MuonCandidateCollection from a TrackCollection of spectrometer tracks */ /**IMuonCandidateTool interface: build a MuonCandidateCollection from a TrackCollection of spectrometer tracks */
virtual void create( const xAOD::TrackParticleContainer& tracks, MuonCandidateCollection& outputCollection ) const = 0; virtual void create( const xAOD::TrackParticleContainer& tracks, MuonCandidateCollection& outputCollection ) = 0;
}; };
......
...@@ -27,7 +27,7 @@ namespace MuonCombined { ...@@ -27,7 +27,7 @@ namespace MuonCombined {
/**IMuonCombinedInDetExtensionTool interface: build combined muons from ID and MS candidates */ /**IMuonCombinedInDetExtensionTool interface: build combined muons from ID and MS candidates */
virtual void extend( const InDetCandidateCollection& inDetCandidates ) const = 0; virtual void extend( const InDetCandidateCollection& inDetCandidates ) = 0;
}; };
......
...@@ -30,7 +30,7 @@ namespace MuonCombined { ...@@ -30,7 +30,7 @@ namespace MuonCombined {
/**IMuonCombinedTagTool interface: build combined muons from a muon and a vector of indet candidates */ /**IMuonCombinedTagTool interface: build combined muons from a muon and a vector of indet candidates */
virtual void combine( const MuonCandidate& muonCandidate, const std::vector<InDetCandidate*>& indetCandidates ) = 0; virtual void combine( const MuonCandidate& muonCandidate, const std::vector<InDetCandidate*>& indetCandidates ) const = 0;
}; };
......
...@@ -31,7 +31,7 @@ namespace MuonCombined { ...@@ -31,7 +31,7 @@ namespace MuonCombined {
/**IMuonCombinedTrigCaloTagExtensionTool interface: build combined muons from ID and MS candidates */ /**IMuonCombinedTrigCaloTagExtensionTool interface: build combined muons from ID and MS candidates */
virtual void extend( const InDetCandidateCollection& inDetCandidates, virtual void extend( const InDetCandidateCollection& inDetCandidates,
const CaloCellContainer* caloCellCont = nullptr, const CaloCellContainer* caloCellCont = nullptr,
const xAOD::CaloClusterContainer* caloClusterCont = nullptr ) const = 0; const xAOD::CaloClusterContainer* caloClusterCont = nullptr ) = 0;
}; };
inline const InterfaceID& IMuonCombinedTrigCaloTagExtensionTool::interfaceID() inline const InterfaceID& IMuonCombinedTrigCaloTagExtensionTool::interfaceID()
......
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