CMS 3D CMS Logo

VBFTauMonitor_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from DQMOffline.Trigger.ObjMonitor_cfi import hltobjmonitoring
4 
5 # HLT_
6 VBFtaumonitoring = hltobjmonitoring.clone(
7 
8  #FolderName = 'HLT/Higgs/VBFTau',
9  FolderName = 'HLT/HIG/VBFTau',
10  numGenericTriggerEventPSet = dict(hltInputTag = "TriggerResults::HLT",
11  hltPaths = ["HLT_VBF_DoubleLooseChargedIsoPFTau20_Trk1_eta2p1_Reg_v*",
12  "HLT_VBF_DoubleMediumChargedIsoPFTau20_Trk1_eta2p1_Reg_v*",
13  "HLT_VBF_DoubleTightChargedIsoPFTau20_Trk1_eta2p1_Reg_v*"]),
14  jetSelection = "pt>40 & abs(eta)<4.7",
15  jetId = "loose",
16  njets = 2,
17 
18  denGenericTriggerEventPSet = dict(hltPaths = ["HLT_DoubleMediumChargedIsoPFTau35_Trk1_eta2p1_Reg_v*"])
19 )
20 higgstautauHLTVBFmonitoring = cms.Sequence(
21  VBFtaumonitoring
22 )