00001 #ifndef PFCand_AssoMap_h 00002 #define PFCand_AssoMap_h 00003 00004 // -*- C++ -*- 00005 // 00006 // Package: PFCand_AssoMap 00007 // Class: PFCand_AssoMap 00008 // 00013 // 00014 // Original Author: Matthias Geisler 00015 // Created: Wed Apr 18 14:48:37 CEST 2012 00016 // $Id: PFCand_AssoMap.h,v 1.8 2012/11/21 09:39:33 mgeisler Exp $ 00017 // 00018 // 00019 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 #include "FWCore/Utilities/interface/InputTag.h" 00029 00030 #include "CommonTools/RecoUtils/interface/PFCand_AssoMapAlgos.h" 00031 00032 00033 // 00034 // class declaration 00035 // 00036 00037 class PFCand_AssoMap : public edm::EDProducer, public PFCand_AssoMapAlgos { 00038 public: 00039 explicit PFCand_AssoMap(const edm::ParameterSet&); 00040 ~PFCand_AssoMap(); 00041 00042 static void fillDescriptions(edm::ConfigurationDescriptions& descriptions); 00043 00044 private: 00045 virtual void produce(edm::Event&, const edm::EventSetup&); 00046 00047 // ----------member data --------------------------- 00048 00049 edm::InputTag input_AssociationType_; 00050 00051 edm::InputTag input_PFCandidates_; 00052 }; 00053 00054 00055 #endif