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 "DataFormats/Common/interface/EDProduct.h"
00006 #include "FWCore/Framework/interface/Event.h"
00007 #include "DataFormats/Common/interface/Handle.h"
00008
00009 #include "FWCore/Framework/interface/EventSetup.h"
00010 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00011
00012 #include "SimCalorimetry/HcalZeroSuppressionAlgos/interface/HcalZSAlgoEnergy.h"
00013
00020 class HcalSimpleAmplitudeZS : public edm::EDProducer {
00021 public:
00022 explicit HcalSimpleAmplitudeZS(const edm::ParameterSet& ps);
00023 virtual ~HcalSimpleAmplitudeZS();
00024 virtual void produce(edm::Event& e, const edm::EventSetup& c);
00025 private:
00026 std::auto_ptr<HcalZSAlgoEnergy> hbhe_,ho_,hf_;
00027 edm::InputTag inputLabel_;
00028 };
00029
00030 #endif