Back to home page

Project CMSSW displayed by LXR

 
 

    


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

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 invariant dijetmass of the two leading jets
0006 # see python/HTMonitor_cfi.py or plugins/HTMonitor.h or plugins/HTMonitor.cc for more details
0007 
0008 hltMjjmonitoring = htMonitoring.clone(
0009     FolderName = 'HLT/HT/PFMETNoMu120/',
0010     quantity = 'Mjj', # set quantity to invariant dijetmass
0011     jetSelection = "pt > 200 && eta < 2.4",
0012     dEtaCut     = 1.3,
0013     met       = "pfMet",
0014     jets      = "ak8PFJetsPuppi",
0015     electrons = "gedGsfElectrons",
0016     muons     = "muons",
0017     
0018     histoPSet = dict(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