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 calojetcoll="hltAntiKT5PFJets"
9 
10 #hltlow15 ="HLT_L1SingleJet36"
11 #hltname15="HLT_Jet30"
12 #folderjet15="HLT/HLTJETMET/SingleJet30"
13 foldernm="HLT/HLTJETMET/"
14 
15 SingleJetMetPaths = cms.EDAnalyzer("HLTJetMETValidation",
16  triggerEventObject = cms.untracked.InputTag("hltTriggerSummaryRAW","","HLT"),
17  DQMFolder = cms.untracked.string(foldernm),
18  PatternJetTrg = cms.untracked.string("HLT_(PF)?Jet([0-9])+(U)?(_v[0-9])?$"),
19  PatternMetTrg = cms.untracked.string("HLT_(PF)?M([E,H])+T([0-9])+(_v[0-9])?$"),
20  PatternMuTrg = cms.untracked.string("HLT_Mu([0-9])+(_v[0-9])?$"),
21  OutputFileName = cms.untracked.string(rootfile),
22  LogFileName = cms.untracked.string('JetMETSingleJetValidation.log'),
23  #HLTLow = cms.untracked.InputTag(hltlow15),
24  #HLTPath = cms.untracked.InputTag(hltname15),
25  CaloJetAlgorithm = cms.untracked.InputTag(calojetcoll),
26  GenJetAlgorithm = cms.untracked.InputTag("ak5GenJets"),
27  CaloMETCollection = cms.untracked.InputTag("hltMet"),
28  GenMETCollection = cms.untracked.InputTag("genMetCalo"),
29  HLTriggerResults = cms.InputTag("TriggerResults::HLT"),
30  #WriteFile = cms.untracked.bool(True)
31 )
32 
33 SingleJetValidation = cms.Sequence(SingleJetMetPaths)