CMS 3D CMS Logo

SoftdropMonitor_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 softdropmass of the leading jet
6 # see python/HTMonitor_cfi.py or plugins/HTMonitor.h or plugins/HTMonitor.cc for more details
7 
8 hltSoftdropmonitoring = htMonitoring.clone(
9  FolderName = 'HLT/HT/PFMETNoMu120/',
10  quantity = 'softdrop', # set quantity to leading jet softdropmass
11  jetSelection = "pt > 65 && eta < 2.4",
12  dEtaCut = 1.3,
13  met = "pfMet",
14  jets = "ak8PFJetsPuppiSoftDrop", # dont set this to non-SoftdropJets
15  electrons = "gedGsfElectrons",
16  muons = "muons",
17  histoPSet = dict(htBinning = [0., 5., 10., 15., 20., 25., 30., 35., 40., 45., 50., 55., 60., 65., 70., 75., 80., 85., 90., 95., 100., 105., 110., 115., 120., 125., 130., 135., 140., 145., 150., 155., 160., 165., 170., 175., 180., 185., 190., 195., 200.],
18  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