Go to the documentation of this file.00001 #ifndef RecoJets_JetProducers_plugins_CastorJetIDProducer_h
00002 #define RecoJets_JetProducers_plugins_CastorJetIDProducer_h
00003
00004
00005
00006
00007
00008
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #include <memory>
00025
00026
00027 #include "FWCore/Framework/interface/Frameworkfwd.h"
00028 #include "FWCore/Framework/interface/EDProducer.h"
00029
00030 #include "FWCore/Framework/interface/Event.h"
00031 #include "FWCore/Framework/interface/MakerMacros.h"
00032
00033 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00034 #include "FWCore/Utilities/interface/InputTag.h"
00035
00036 #include "RecoJets/JetProducers/interface/CastorJetIDHelper.h"
00037
00038
00039
00040
00041
00042 class CastorJetIDProducer : public edm::EDProducer {
00043 public:
00044
00045 explicit CastorJetIDProducer(const edm::ParameterSet&);
00046 ~CastorJetIDProducer();
00047
00048 private:
00049 virtual void beginJob() ;
00050 virtual void produce(edm::Event&, const edm::EventSetup&);
00051 virtual void endJob() ;
00052
00053
00054 edm::InputTag src_;
00055 reco::helper::CastorJetIDHelper helper_;
00056 };
00057
00058
00059 #endif