Go to the documentation of this file.00001 #ifndef RECOLOCALCALO_HFCLUSTERPRODUCER_HFRECOECALCANDIDATEPRODUCER_H
00002 #define RECOLOCALCALO_HFCLUSTERPRODUCER_HFRECOECALCANDIDATEPRODUCER_H 1// -*- C++ -*-
00003
00004
00005
00006
00009
00010
00011
00012
00013
00014
00015
00016 #include "FWCore/Framework/interface/EDProducer.h"
00017 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00018 #include "FWCore/Framework/interface/Event.h"
00019 #include "FWCore/Framework/interface/EventSetup.h"
00020 #include "FWCore/Framework/interface/ESHandle.h"
00021 #include "RecoEgamma/EgammaHFProducers/interface/HFRecoEcalCandidateAlgo.h"
00022
00023
00024 class HFRecoEcalCandidateProducer : public edm::EDProducer {
00025 public:
00026 explicit HFRecoEcalCandidateProducer(edm::ParameterSet const& conf);
00027 virtual void produce(edm::Event& e, edm::EventSetup const& iSetup);
00028 private:
00029 edm::InputTag hfclusters_;
00030 HFRecoEcalCandidateAlgo algo_;
00031 };
00032
00033 #endif