00001 #ifndef HCALSIMPLEREALISTICZS_H 00002 #define HCALSIMPLEREALISTICZS_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/HcalZSAlgoRealistic.h" 00013 00020 class HcalRealisticZS : public edm::EDProducer { 00021 public: 00022 explicit HcalRealisticZS(const edm::ParameterSet& ps); 00023 virtual ~HcalRealisticZS(); 00024 virtual void produce(edm::Event& e, const edm::EventSetup& c); 00025 private: 00026 std::auto_ptr<HcalZSAlgoRealistic> algo_; 00027 edm::InputTag inputLabel_; 00028 }; 00029 00030 #endif