Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:27:42

0001 #ifndef DQMTauProducer_H
0002 #define DQMTauProducer_H
0003 
0004 // user include files
0005 #include "FWCore/Framework/interface/Frameworkfwd.h"
0006 #include "FWCore/Framework/interface/global/EDProducer.h"
0007 
0008 #include "FWCore/Framework/interface/Event.h"
0009 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0010 #include "FWCore/Utilities/interface/InputTag.h"
0011 #include "DataFormats/Common/interface/Handle.h"
0012 #include "DataFormats/BTauReco/interface/IsolatedTauTagInfo.h"
0013 #include "DataFormats/TauReco/interface/L2TauInfoAssociation.h"
0014 #include "DataFormats/TauReco/interface/HLTTau.h"
0015 
0016 class DQMTauProducer : public edm::global::EDProducer<> {
0017 public:
0018   explicit DQMTauProducer(const edm::ParameterSet&);
0019   ~DQMTauProducer() override;
0020   void produce(edm::StreamID, edm::Event&, const edm::EventSetup&) const override;
0021 
0022 private:
0023   edm::EDGetTokenT<reco::IsolatedTauTagInfoCollection> trackIsolatedJets_;
0024   double rmin_, rmax_, matchingCone_, ptMinLeadTk_, signalCone_, isolationCone_, ptMin_;
0025 };
0026 
0027 #endif