00001 #ifndef _ALCAPHISYMRECHITSPRODUCER_H 00002 #define _ALCAPHISYMRECHITSPRODUCER_H 00003 00004 // -*- C++ -*- 00005 // 00006 // Package: AlCaPhiSymRecHitsProducer 00007 // Class: AlCaPhiSymRecHitsProducer 00008 // 00016 // 00017 // Original Author: David Futyan 00018 // Created: $Date: 2006/11/21 16:53:03 $ 00019 // $Id: AlCaPhiSymRecHitsProducer.h,v 1.2 2006/11/21 16:53:03 malgeri Exp $ 00020 // 00021 // 00022 00023 00024 // system include files 00025 #include <memory> 00026 00027 // user include files 00028 #include "FWCore/Framework/interface/Frameworkfwd.h" 00029 #include "FWCore/Framework/interface/EDProducer.h" 00030 00031 #include "FWCore/Framework/interface/Event.h" 00032 #include "FWCore/Framework/interface/MakerMacros.h" 00033 00034 #include "FWCore/ParameterSet/interface/ParameterSet.h" 00035 00036 // 00037 // class decleration 00038 // 00039 00040 class AlCaPhiSymRecHitsProducer : public edm::EDProducer { 00041 public: 00042 explicit AlCaPhiSymRecHitsProducer(const edm::ParameterSet&); 00043 ~AlCaPhiSymRecHitsProducer(); 00044 00045 00046 virtual void produce(edm::Event &, const edm::EventSetup&); 00047 private: 00048 // ----------member data --------------------------- 00049 00050 std::string ecalHitsProducer_; 00051 std::string barrelHits_; 00052 std::string endcapHits_; 00053 std::string phiSymBarrelHits_; 00054 std::string phiSymEndcapHits_; 00055 double eCut_barl_; 00056 double eCut_endc_; 00057 }; 00058 00059 #endif