CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SingleJetValidation_cfi.py
Go to the documentation of this file.
2 
3 rootfile="ttbar_output.root"
4 
5 # calojetcoll="iterativeCone5CaloJets"
6 #calojetcoll="hltIterativeCone5CaloJets"
7 calojetcoll="hltAntiKT5L2L3CorrCaloJets"
8 
9 #hltlow15 ="HLT_L1SingleJet36"
10 #hltname15="HLT_Jet30"
11 #folderjet15="HLT/HLTJETMET/SingleJet30"
12 foldernm="HLT/HLTJETMET/"
13 
14 SingleJetMetPaths = cms.EDAnalyzer("HLTJetMETValidation",
15  triggerEventObject = cms.untracked.InputTag("hltTriggerSummaryRAW","","HLT"),
16  DQMFolder = cms.untracked.string(foldernm),
17  PatternJetTrg = cms.untracked.string("HLT_Jet([0-9])+(U)?(_v[0-9])?$"),
18  PatternMetTrg = cms.untracked.string("HLT_(PF)?M([E,H])+T([0-9])+(_v[0-9])?$"),
19  PatternMuTrg = cms.untracked.string("HLT_Mu([0-9])+(_v[0-9])?$"),
20  OutputFileName = cms.untracked.string(rootfile),
21  LogFileName = cms.untracked.string('JetMETSingleJetValidation.log'),
22  #HLTLow = cms.untracked.InputTag(hltlow15),
23  #HLTPath = cms.untracked.InputTag(hltname15),
24  CaloJetAlgorithm = cms.untracked.InputTag(calojetcoll),
25  GenJetAlgorithm = cms.untracked.InputTag("ak5GenJets"),
26  CaloMETCollection = cms.untracked.InputTag("hltMet"),
27  GenMETCollection = cms.untracked.InputTag("genMetCalo"),
28  HLTriggerResults = cms.InputTag("TriggerResults::HLT"),
29 )
30 
31 SingleJetValidation = cms.Sequence(SingleJetMetPaths)