Skip to content

Commit

Permalink
Merge pull request #17020 from gartung/PhysicsTools-JetMCAlgos-fix-cl…
Browse files Browse the repository at this point in the history
…ang-warnings

PhysicsTools/JetMCAlgos: fix clang warning hides overloaded virtual
  • Loading branch information
davidlange6 committed Dec 20, 2016
2 parents 8dcb7a6 + a6c30ca commit 825b696
Showing 1 changed file with 0 additions and 39 deletions.
39 changes: 0 additions & 39 deletions PhysicsTools/JetMCAlgos/plugins/GenHFHadronMatcher.cc
Expand Up @@ -64,14 +64,7 @@ class GenHFHadronMatcher : public edm::EDProducer
static void fillDescriptions ( edm::ConfigurationDescriptions& descriptions );

private:
virtual void beginJob() ;
virtual void produce( edm::Event&, const edm::EventSetup& );
virtual void endJob() ;

virtual void beginRun( edm::Run&, edm::EventSetup const& );
virtual void endRun( edm::Run&, edm::EventSetup const& );
virtual void beginLuminosityBlock( edm::LuminosityBlock&, edm::EventSetup const& );
virtual void endLuminosityBlock( edm::LuminosityBlock&, edm::EventSetup const& );

std::vector<int> findHadronJets( const reco::GenParticleCollection* genParticles, const reco::JetFlavourInfoMatchingCollection* jetFlavourInfos,
std::vector<int> &hadIndex, std::vector<reco::GenParticle> &hadMothersGenPart,
Expand Down Expand Up @@ -233,38 +226,6 @@ void GenHFHadronMatcher::produce ( edm::Event& evt, const edm::EventSetup& setup
evt.put(std::move(hadBHadronId), "gen"+flavourStr_+"HadBHadronId" );
}

// ------------ method called once each job just before starting event loop ------------
void GenHFHadronMatcher::beginJob()
{
}

// ------------ method called once each job just after ending the event loop ------------
void GenHFHadronMatcher::endJob()
{
}

// ------------ method called when starting to processes a run ------------
void GenHFHadronMatcher::beginRun ( edm::Run&, edm::EventSetup const& )
{
}

// ------------ method called when ending the processing of a run ------------
void
GenHFHadronMatcher::endRun ( edm::Run&, edm::EventSetup const& )
{
}

// ------------ method called when starting to processes a luminosity block ------------
void GenHFHadronMatcher::beginLuminosityBlock ( edm::LuminosityBlock&, edm::EventSetup const& )
{
}

// ------------ method called when ending the processing of a luminosity block ------------
void GenHFHadronMatcher::endLuminosityBlock ( edm::LuminosityBlock&, edm::EventSetup const& )
{
}



/**
* @brief identify the jets that contain b-hadrons
Expand Down

0 comments on commit 825b696

Please sign in to comment.