Go to the documentation of this file.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
00014
00015
00016
00023 class HcalRealisticZS : public edm::EDProducer {
00024 public:
00025 explicit HcalRealisticZS(const edm::ParameterSet& ps);
00026 virtual ~HcalRealisticZS();
00027 virtual void produce(edm::Event& e, const edm::EventSetup& c);
00028 private:
00029 std::auto_ptr<HcalZSAlgoRealistic> algo_;
00030 edm::InputTag inputLabel_;
00031 };
00032
00033 #endif