CMS 3D CMS Logo

VBFSUSYMonitor_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_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60_v* and
6 VBFSUSYmonitoring = hltobjmonitoring.clone(
7  FolderName = 'HLT/SUSY/VBF/DiJet/',
8  numGenericTriggerEventPSet = dict(hltInputTag = "TriggerResults::HLT" ,
9  hltPaths = ["HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60_v*","HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60_v*"]),
10  jetSelection = "pt>40 & abs(eta)<5.0",
11  jetId = "loose",
12  njets = 2,
13  #enableMETPlot = True,
14  #metSelection = "pt>50",
15  htjetSelection = "pt>30 & abs(eta)<5.0"
16 )
17 susyHLTVBFMonitoring = cms.Sequence(
18  VBFSUSYmonitoring
19 )
20