CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_5/src/SimCalorimetry/HcalZeroSuppressionProducers/src/HcalRealisticZS.h

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 "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 "HcalZSAlgoRealistic.h"
00012 
00013 //#include "CalibFormats/HcalObjects/interface/HcalDbService.h"
00014 //#include "CalibFormats/HcalObjects/interface/HcalDbRecord.h"
00015 
00022 class HcalRealisticZS : public edm::EDProducer {
00023 public:
00024   explicit HcalRealisticZS(const edm::ParameterSet& ps);
00025   virtual ~HcalRealisticZS();
00026   virtual void produce(edm::Event& e, const edm::EventSetup& c);
00027 private:
00028   std::auto_ptr<HcalZSAlgoRealistic> algo_;
00029   edm::InputTag inputLabel_;
00030 };
00031 
00032 #endif