CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_6_1_2_SLHC2_patch1/src/HLTrigger/JetMET/interface/HLTMhtProducer.h

Go to the documentation of this file.
00001 #ifndef HLTMhtProducer_h
00002 #define HLTMhtProducer_h
00003 
00010 #include "FWCore/Framework/interface/EDProducer.h"
00011 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00012 #include "FWCore/Framework/interface/Event.h"
00013 #include "FWCore/Framework/interface/EventSetup.h"
00014 
00015 //
00016 // class declaration
00017 //
00018 
00019 class HLTMhtProducer : public edm::EDProducer {
00020 
00021    public:
00022       explicit HLTMhtProducer(const edm::ParameterSet&);
00023       ~HLTMhtProducer();
00024       static void fillDescriptions(edm::ConfigurationDescriptions & descriptions);
00025       virtual void produce(edm::Event&, const edm::EventSetup&);
00026       
00027  private:
00028       edm::InputTag inputJetTag_; // input tag identifying jets
00029       double minPtJet_;
00030       double etaJet_;
00031       bool usePt_;
00032       
00033 };
00034 
00035 #endif //HLTMhtProducer_h