CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_1_8_patch13/src/RecoTauTag/HLTProducers/interface/L1HLTJetsMatching.h

Go to the documentation of this file.
00001 #ifndef L1HLTJETSMATCHING_H
00002 #define L1HLTJETSMATCHING_H
00003 
00004 // user include files
00005 #include "FWCore/Framework/interface/Frameworkfwd.h"
00006 #include "FWCore/Framework/interface/EDProducer.h"
00007 
00008 #include "FWCore/Framework/interface/Event.h"
00009 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00010 #include "FWCore/Utilities/interface/InputTag.h"
00011 #include "DataFormats/Common/interface/Handle.h"
00012 #include "DataFormats/L1Trigger/interface/L1JetParticle.h"
00013 #include "DataFormats/L1Trigger/interface/L1JetParticleFwd.h"
00014 #include "DataFormats/JetReco/interface/CaloJetCollection.h"
00015 #include "DataFormats/HLTReco/interface/TriggerFilterObjectWithRefs.h"
00016 
00017 
00018 #include <map>
00019 #include <vector>
00020 
00021 class L1HLTJetsMatching: public edm::EDProducer {
00022  public:
00023   explicit L1HLTJetsMatching(const edm::ParameterSet&);
00024   ~L1HLTJetsMatching();
00025   virtual void produce(edm::Event&, const edm::EventSetup&);
00026 
00027  private:
00028   std::vector<l1extra::L1JetParticleRef> tauCandRefVec;
00029 std::vector<l1extra::L1JetParticleRef> jetCandRefVec;
00030   std::vector<l1extra::L1JetParticleRef> objL1CandRefVec;
00031   l1extra::L1JetParticleRef tauCandRef;
00032     
00033   edm::InputTag jetSrc;
00034   edm::InputTag tauTrigger;
00035   double mEt_Min;
00036 };
00037 #endif