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