Skip to content

Commit

Permalink
Code style checks
Browse files Browse the repository at this point in the history
  • Loading branch information
makortel committed Sep 15, 2017
1 parent 1d082ab commit ef0d666
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -23,7 +23,7 @@
class TrackMVAClassifierBase : public edm::stream::EDProducer<> {
public:
explicit TrackMVAClassifierBase( const edm::ParameterSet & cfg );
~TrackMVAClassifierBase();
~TrackMVAClassifierBase() override;
protected:

static void fill( edm::ParameterSetDescription& desc);
Expand All @@ -40,7 +40,7 @@ class TrackMVAClassifierBase : public edm::stream::EDProducer<> {
MVACollection & mvas) const = 0;

private:
void produce(edm::Event& evt, const edm::EventSetup& es ) override final;
void produce(edm::Event& evt, const edm::EventSetup& es ) final;

/// source collection label
edm::EDGetTokenT<reco::TrackCollection> src_;
Expand Down

0 comments on commit ef0d666

Please sign in to comment.