Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 rootfile="out.root"
00004
00005 calojetcoll="iterativeConePu5CaloJets"
00006
00007 genjetcoll="iterativeCone5HiGenJets"
00008
00009 hltlow35 =""
00010 hltname35="HLT_HIJet35U"
00011 folderjet35="HLT/HLTJETMET/SingleJet35U"
00012
00013 SingleJetPathVal35 = cms.EDAnalyzer("HLTJetMETValidation",
00014 triggerEventObject = cms.untracked.InputTag("hltTriggerSummaryRAW","","HLT"),
00015 DQMFolder = cms.untracked.string(folderjet35),
00016 OutputFileName = cms.untracked.string(rootfile),
00017 LogFileName = cms.untracked.string('JetMETSingleJetValidation.log'),
00018 HLTLow = cms.untracked.InputTag(hltlow35),
00019 HLTPath = cms.untracked.InputTag(hltname35),
00020 CaloJetAlgorithm = cms.untracked.InputTag(calojetcoll),
00021 GenJetAlgorithm = cms.untracked.InputTag(genjetcoll),
00022 CaloMETCollection = cms.untracked.InputTag("hltMet"),
00023 GenMETCollection = cms.untracked.InputTag("genMetCalo"),
00024 HLTriggerResults = cms.InputTag("TriggerResults::HLT"),
00025 )
00026
00027 hiSingleJetValidation = cms.Sequence(SingleJetPathVal35)