File indexing completed on 2024-04-06 12:01:11
0001 #ifndef PFCand_AssoMap_h
0002 #define PFCand_AssoMap_h
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020 #include "FWCore/Framework/interface/Frameworkfwd.h"
0021 #include "FWCore/Framework/interface/stream/EDProducer.h"
0022
0023 #include "FWCore/Framework/interface/Event.h"
0024 #include "FWCore/Framework/interface/MakerMacros.h"
0025
0026 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0027
0028 #include "FWCore/Utilities/interface/InputTag.h"
0029
0030 #include "CommonTools/RecoUtils/interface/PFCand_AssoMapAlgos.h"
0031
0032
0033
0034
0035
0036 class PFCand_AssoMap : public edm::stream::EDProducer<>, public PFCand_AssoMapAlgos {
0037 public:
0038 explicit PFCand_AssoMap(const edm::ParameterSet&);
0039 ~PFCand_AssoMap() override;
0040
0041 static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
0042
0043 private:
0044 void produce(edm::Event&, const edm::EventSetup&) override;
0045
0046
0047
0048 edm::InputTag input_AssociationType_;
0049
0050 edm::EDGetTokenT<reco::PFCandidateCollection> token_PFCandidates_;
0051 };
0052
0053 #endif