Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:10:03

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from DQMOffline.Trigger.htMonitoring_cfi import htMonitoring
0004 
0005 # config file for monitoring the trigger efficiency vs softdropmass of the leading jet
0006 # see python/HTMonitor_cfi.py or plugins/HTMonitor.h or plugins/HTMonitor.cc for more details
0007 
0008 hltSoftdropmonitoring = htMonitoring.clone(
0009     FolderName = 'HLT/HT/PFMETNoMu120/',
0010     quantity = 'softdrop', # set quantity to leading jet softdropmass
0011     jetSelection = "pt > 65 && eta < 2.4",
0012     dEtaCut     = 1.3,
0013     met       = "pfMet",
0014     jets      = "ak8PFJetsPuppiSoftDrop", # dont set this to non-SoftdropJets
0015     electrons = "gedGsfElectrons",
0016     muons     = "muons",
0017     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.],
0018                      htPSet = dict(
0019                             nbins =  200,
0020                             xmin  = -0.5,
0021                             xmax  = 19999.5)),
0022     
0023 numGenericTriggerEventPSet = dict(
0024     andOr  = False,
0025     andOrHlt      = True, # True:=OR; False:=AND
0026     hltInputTag   = "TriggerResults::HLT",
0027     hltPaths      = ["HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_v*"],
0028     errorReplyHlt = False,
0029     verbosityLevel = 0),
0030 
0031 denGenericTriggerEventPSet = dict(
0032     andOr  = False,
0033     dcsInputTag   = "scalersRawToDigi",
0034     dcsRecordInputTag = "onlineMetaDataDigis",
0035     dcsPartitions = [24, 25, 26, 27, 28, 29], # 24-27: strip, 28-29
0036     andOrDcs      = False,
0037     errorReplyDcs = True,
0038     verbosityLevel = 0,
0039     hltPaths      = ["HLT_IsoMu27_v*"])
0040 )
0041