CMS 3D CMS Logo

L1ForJetRecoAnalysis_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # Select Reco
00004 from L1TriggerOffline.L1Analyzer.RecoSelection_cff import *
00005 # Select L1
00006 from L1TriggerOffline.L1Analyzer.L1Selection_cff import *
00007 # Histogram limits
00008 from L1TriggerOffline.L1Analyzer.HistoLimits_cfi import *
00009 # Root output file
00010 from L1TriggerOffline.L1Analyzer.TFile_cfi import *
00011 # Match Reco and L1 jets 
00012 MatchForJetsReco = cms.EDFilter("TrivialDeltaRMatcher",
00013     src = cms.InputTag("SelectL1ForJets"),
00014     distMin = cms.double(0.5),
00015     matched = cms.InputTag("SelectRecoForJets")
00016 )
00017 
00018 # Match L1 and Reco jets
00019 MatchRecoForJets = cms.EDFilter("TrivialDeltaRMatcher",
00020     src = cms.InputTag("SelectRecoForJets"),
00021     distMin = cms.double(0.5),
00022     matched = cms.InputTag("SelectL1ForJets")
00023 )
00024 
00025 # Analyzer
00026 L1AnalyzerForJetsReco = cms.EDAnalyzer("L1Analyzer",
00027     histoLimits,
00028     EffMatchMapSource = cms.untracked.InputTag("MatchRecoForJets"),
00029     ReferenceSource = cms.untracked.InputTag("SelectRecoForJets"),
00030     CandidateSource = cms.untracked.InputTag("SelectL1ForJets"),
00031     ResMatchMapSource = cms.untracked.InputTag("MatchForJetsReco")
00032 )
00033 
00034 # Define analysis sequence
00035 L1ForJetRecoAnalysis = cms.Sequence(RecoForJetSelection+L1ForJetSelection*MatchForJetsReco+MatchRecoForJets*L1AnalyzerForJetsReco)
00036 

Generated on Tue Jun 9 17:40:30 2009 for CMSSW by  doxygen 1.5.4