CMS 3D CMS Logo

MjjMonitor_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from DQMOffline.Trigger.htMonitoring_cfi import htMonitoring
4 
5 # config file for monitoring the trigger efficiency vs invariant dijetmass of the two leading jets
6 # see python/HTMonitor_cfi.py or plugins/HTMonitor.h or plugins/HTMonitor.cc for more details
7 
8 hltMjjmonitoring = htMonitoring.clone(
9  FolderName = 'HLT/HT/PFMETNoMu120/',
10  quantity = 'Mjj', # set quantity to invariant dijetmass
11  jetSelection = "pt > 200 && eta < 2.4",
12  dEtaCut = 1.3,
13  met = "pfMet",
14  jets = "ak8PFJetsPuppi",
15  electrons = "gedGsfElectrons",
16  muons = "muons",
17 
18  histoPSet = dict(htPSet = dict(
19  nbins = 200,
20  xmin = -0.5,
21  xmax = 19999.5)),
22 
23  numGenericTriggerEventPSet = dict(
24  andOr = False,
25  andOrHlt = True, # True:=OR; False:=AND
26  hltInputTag = "TriggerResults::HLT",
27  hltPaths = ["HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_v*"],
28  errorReplyHlt = False,
29  verbosityLevel = 0),
30 
31  denGenericTriggerEventPSet = dict(
32  andOr = False,
33  dcsInputTag = "scalersRawToDigi",
34  dcsRecordInputTag = "onlineMetaDataDigis",
35  dcsPartitions = [ 24, 25, 26, 27, 28, 29], # 24-27: strip, 28-29
36  andOrDcs = False,
37  errorReplyDcs = True,
38  verbosityLevel = 0,
39  hltPaths = ["HLT_IsoMu27_v*"])
40 )
41