00001 // -*- C++ -*- 00002 // 00003 // Package: EgammaHLTProducers 00004 // Class: EgammaHLTClusterShapeProducer 00005 // 00008 // 00009 // Original Author: Roberto Covarelli (CERN) 00010 // Created: Tue Jun 13 14:48:33 CEST 2006 00011 // $Id: EgammaHLTClusterShapeProducer.h,v 1.2 2009/02/04 10:59:28 covarell Exp $ 00012 // 00013 // 00014 00015 00016 // system include files 00017 #include <memory> 00018 00019 // user include files 00020 #include "FWCore/Framework/interface/Frameworkfwd.h" 00021 #include "FWCore/Framework/interface/EDProducer.h" 00022 00023 #include "FWCore/Framework/interface/Event.h" 00024 #include "FWCore/Framework/interface/MakerMacros.h" 00025 00026 #include "FWCore/ParameterSet/interface/ParameterSet.h" 00027 00028 // 00029 // class declaration 00030 // 00031 00032 class EgammaHLTClusterShapeProducer : public edm::EDProducer { 00033 public: 00034 explicit EgammaHLTClusterShapeProducer(const edm::ParameterSet&); 00035 ~EgammaHLTClusterShapeProducer(); 00036 00037 00038 virtual void produce(edm::Event&, const edm::EventSetup&); 00039 private: 00040 // ----------member data --------------------------- 00041 00042 edm::InputTag recoEcalCandidateProducer_; 00043 edm::InputTag ecalRechitEBTag_; 00044 edm::InputTag ecalRechitEETag_; 00045 bool EtaOrIeta_; 00046 00047 edm::ParameterSet conf_; 00048 00049 }; 00050