Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-10-25 09:55:41

0001 #ifndef L1TPFMetNoMuProducer_H
0002 #define L1TPFMetNoMuProducer_H
0003 
0004 #include "FWCore/Framework/interface/Frameworkfwd.h"
0005 #include "FWCore/Framework/interface/stream/EDProducer.h"
0006 #include "FWCore/Framework/interface/Event.h"
0007 #include "FWCore/Framework/interface/EventSetup.h"
0008 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0009 
0010 #include "DataFormats/METReco/interface/PFMET.h"
0011 #include "DataFormats/METReco/interface/PFMETCollection.h"
0012 #include "DataFormats/MuonReco/interface/Muon.h"
0013 #include "DataFormats/MuonReco/interface/MuonFwd.h"
0014 
0015 class L1TPFMetNoMuProducer : public edm::stream::EDProducer<> {
0016 public:
0017   explicit L1TPFMetNoMuProducer(const edm::ParameterSet &ps);
0018 
0019 private:
0020   void produce(edm::Event &event, const edm::EventSetup &eventSetup) override;
0021 
0022   const edm::EDGetTokenT<reco::PFMETCollection> thePFMETCollection_;
0023   const edm::EDGetTokenT<reco::MuonCollection> theMuonCollection_;
0024 };
0025 #endif