CMS 3D CMS Logo

HTMonitor_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 hltHTmonitoring = htMonitoring.clone(
6  FolderName = 'HLT/HT/PFMETNoMu120/',
7  met = "pfMet", # pfMet
8  jets = "ak4PFJets", # ak4PFJets, ak4PFJetsCHS
9  electrons = "gedGsfElectrons", # while pfIsolatedElectronsEI are reco::PFCandidate !
10  muons = "muons", # while pfIsolatedMuonsEI are reco::PFCandidate !
11 
12  histoPSet = dict(
13  lsPSet = dict(
14  nbins = 250,
15  xmin = 0.,
16  xmax = 2500.),
17  htPSet = dict(
18  nbins = 200,
19  xmin = -0.5,
20  xmax = 19999.5)
21  ),
22 
23  numGenericTriggerEventPSet = dict(
24  andOr = False,
25  #dbLabel = "ExoDQMTrigger", # it does not exist yet, we should consider the possibility of using the DB, but as it is now it will need a label per path !
26  andOrHlt = True,# True:=OR; False:=AND
27  hltInputTag = "TriggerResults::HLT",
28  hltPaths = ["HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_v*"], # HLT_ZeroBias_v*
29  #hltDBKey = "EXO_HLT_HT",
30  errorReplyHlt = False,
31  verbosityLevel= 0),
32 
33  denGenericTriggerEventPSet = dict(
34  andOr = False,
35  dcsInputTag = "scalersRawToDigi",
36  dcsRecordInputTag = "onlineMetaDataDigis",
37  dcsPartitions = [24, 25, 26, 27, 28, 29], # 24-27: strip, 28-29: pixel, we should add all other detectors !
38  andOrDcs = False,
39  errorReplyDcs = True,
40  verbosityLevel = 0,
41  hltPaths = ["HLT_IsoMu27_v*"])
42 )
43