CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_1_8_patch13/src/RecoJets/JetProducers/plugins/CastorJetIDProducer.h

Go to the documentation of this file.
00001 #ifndef RecoJets_JetProducers_plugins_CastorJetIDProducer_h
00002 #define RecoJets_JetProducers_plugins_CastorJetIDProducer_h
00003 
00004 // -*- C++ -*-
00005 //
00006 // Package:    CastorJetIDProducer
00007 // Class:      CastorJetIDProducer
00008 // 
00015 //
00016 // Original Author:  "Salvatore Rappoccio"
00017 //         Created:  Thu Sep 17 12:18:18 CDT 2009
00018 // $Id: CastorJetIDProducer.h,v 1.2 2010/07/06 17:39:38 srappocc Exp $
00019 //
00020 //
00021 
00022 
00023 // system include files
00024 #include <memory>
00025 
00026 // user include files
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 // class decleration
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       // ----------member data ---------------------------
00054   edm::InputTag                 src_;         // input jet source
00055   reco::helper::CastorJetIDHelper     helper_;      // castor jet id helper algorithm
00056 };
00057 
00058 
00059 #endif