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 hltHTmonitoring = htMonitoring.clone(
0006 FolderName = 'HLT/HT/PFMETNoMu120/',
0007 met = "pfMet",
0008 jets = "ak4PFJets",
0009 electrons = "gedGsfElectrons",
0010 muons = "muons",
0011
0012 histoPSet = dict(
0013 lsPSet = dict(
0014 nbins = 250,
0015 xmin = 0.,
0016 xmax = 2500.),
0017 htPSet = dict(
0018 nbins = 200,
0019 xmin = -0.5,
0020 xmax = 19999.5)
0021 ),
0022
0023 numGenericTriggerEventPSet = dict(
0024 andOr = False,
0025
0026 andOrHlt = True,
0027 hltInputTag = "TriggerResults::HLT",
0028 hltPaths = ["HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_v*"],
0029
0030 errorReplyHlt = False,
0031 verbosityLevel= 0),
0032
0033 denGenericTriggerEventPSet = dict(
0034 andOr = False,
0035 dcsInputTag = "scalersRawToDigi",
0036 dcsRecordInputTag = "onlineMetaDataDigis",
0037 dcsPartitions = [24, 25, 26, 27, 28, 29],
0038 andOrDcs = False,
0039 errorReplyDcs = True,
0040 verbosityLevel = 0,
0041 hltPaths = ["HLT_IsoMu27_v*"])
0042 )
0043