Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:25:31

0001 #ifndef RecoJets_JetProducers_BasicToPFJet_h
0002 #define RecoJets_JetProducers_BasicToPFJet_h
0003 
0004 #include "FWCore/Framework/interface/Frameworkfwd.h"
0005 #include "FWCore/Framework/interface/global/EDProducer.h"
0006 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0007 #include "FWCore/ParameterSet/interface/ConfigurationDescriptions.h"
0008 #include "FWCore/ParameterSet/interface/ParameterSetDescription.h"
0009 #include "DataFormats/JetReco/interface/BasicJet.h"
0010 
0011 class BasicToPFJet : public edm::global::EDProducer<> {
0012 public:
0013   explicit BasicToPFJet(const edm::ParameterSet& PSet);
0014   void produce(edm::StreamID, edm::Event& event, const edm::EventSetup& EventSetup) const override;
0015   static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
0016 
0017 private:
0018   edm::InputTag src_;
0019   const edm::EDGetTokenT<reco::BasicJetCollection> inputToken_;
0020 };
0021 
0022 #endif