CMS 3D CMS Logo

ObjMonitor_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from DQMOffline.Trigger.objMonitoring_cfi import objMonitoring
4 
5 hltobjmonitoring = objMonitoring.clone(
6  FolderName = 'HLT/GENERIC/',
7  doMETHistos = True,
8  met = "pfMet",
9  jets = "ak4PFJetsCHS",
10  electrons = "gedGsfElectrons",
11  muons = "muons",
12  photons = "gedPhotons",
13  tracks = "generalTracks",
14  doJetHistos = True,
15  doHTHistos = True,
16  doHMesonGammaHistos = False,
17 
18  histoPSet = dict(
19  metPSet = dict(
20  nbins = 200 ,
21  xmin = -0.5,
22  xmax = 19999.5),
23 
24  phiPSet = dict(
25  nbins = 64 ,
26  xmin = -3.1416,
27  xmax = 3.1416),
28 
29  jetetaPSet = dict(
30  nbins = 100 ,
31  xmin = -5,
32  xmax = 5),
33 
34  detajjPSet = dict(
35  nbins = 90 ,
36  xmin = 0,
37  xmax = 9),
38 
39  dphijjPSet = dict(
40  nbins = 64 ,
41  xmin = 0,
42  xmax = 3.1416),
43 
44  mindphijmetPSet = dict(
45  nbins = 64,
46  xmin = 0,
47  xmax = 3.1416),
48 
49  htPSet = dict(
50  nbins = 60 ,
51  xmin = -0.5,
52  xmax = 1499.5),
53 
54  hmgetaPSet = dict(
55  nbins = 60 ,
56  xmin = -2.6,
57  xmax = 2.6),
58  ),
59 
60  numGenericTriggerEventPSet = dict(
61  andOr = False,
62  #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 !
63  andOrHlt = True, # True:=OR; False:=AND
64  hltInputTag = "TriggerResults::HLT",
65  hltPaths = ["HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_v*"], # HLT_ZeroBias_v*
66  #hltDBKey = "EXO_HLT_MET",
67  errorReplyHlt = False,
68  verbosityLevel = 1),
69 
70  denGenericTriggerEventPSet = dict(
71  andOr = False,
72  dcsInputTag = "scalersRawToDigi",
73  dcsRecordInputTag = "onlineMetaDataDigis",
74  dcsPartitions = [ 24, 25, 26, 27, 28, 29], # 24-27: strip, 28-29: pixel, we should add all other detectors !
75  andOrDcs = False,
76  errorReplyDcs = True,
77  verbosityLevel = 1)
78 )
79 
80