CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_4_5_patch3/src/SimCalorimetry/HcalZeroSuppressionProducers/src/HcalSimpleAmplitudeZS.h

Go to the documentation of this file.
00001 #ifndef HCALSIMPLEAMPLITUDEZS_H
00002 #define HCALSIMPLEAMPLITUDEZS_H 1
00003 
00004 #include "FWCore/Framework/interface/EDProducer.h"
00005 #include "FWCore/Framework/interface/Event.h"
00006 #include "DataFormats/Common/interface/Handle.h"
00007 
00008 #include "FWCore/Framework/interface/EventSetup.h"
00009 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00010 
00011 #include "SimCalorimetry/HcalZeroSuppressionAlgos/interface/HcalZSAlgoEnergy.h"
00012 
00019 class HcalSimpleAmplitudeZS : public edm::EDProducer {
00020 public:
00021   explicit HcalSimpleAmplitudeZS(const edm::ParameterSet& ps);
00022   virtual ~HcalSimpleAmplitudeZS();
00023   virtual void produce(edm::Event& e, const edm::EventSetup& c);
00024 private:
00025   std::auto_ptr<HcalZSAlgoEnergy> hbhe_,ho_,hf_;
00026   edm::InputTag inputLabel_;
00027 };
00028 
00029 #endif