Skip to content

Commit

Permalink
To remove the warning hides overloaded virtual function
Browse files Browse the repository at this point in the history
  • Loading branch information
thspeer authored and ktf committed May 14, 2014
1 parent bc2f551 commit 0854a62
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class ConfigurableTrimmedVertexFinder : public VertexReconstructor {
std::vector<TransientVertex>
vertices( const std::vector<reco::TransientTrack> & tracks,
std::vector<reco::TransientTrack>& unused,
const reco::BeamSpot & spot, bool use_spot ) const;
const reco::BeamSpot & spot, bool use_spot) const;

/** Access to parameters
*/
Expand Down Expand Up @@ -115,6 +115,8 @@ class ConfigurableTrimmedVertexFinder : public VertexReconstructor {

private:

using VertexReconstructor::vertices;

// separate tracks passing the filter
// void separateTracks(std::vector<TransientTrack>& filtered,
// std::vector<TransientTrack>& unused) const;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ class KalmanTrimmedVertexFinder
private:

ConfigurableTrimmedVertexFinder * theFinder;
using VertexReconstructor::vertices;

};

Expand Down

0 comments on commit 0854a62

Please sign in to comment.