CMS 3D CMS Logo

DiJetMonitor_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from DQMOffline.Trigger.dijetMonitoring_cfi import dijetMonitoring
4 DiPFjetAve40_Prommonitoring = dijetMonitoring.clone(
5  FolderName = 'HLT/JME/Jets/AK4/PF/HLT_DiPFJetAve40/',
6  met = "pfMet", # pfMet
7  #pfjets = "ak4PFJets", # ak4PFJets, ak4PFJetsCHS
8  dijetSrc = "ak4PFJets", # ak4PFJets, ak4PFJetsCHS
9  electrons = "gedGsfElectrons", # while pfIsolatedElectronsEI are reco::PFCandidate !
10  muons = "muons", # while pfIsolatedMuonsEI are reco::PFCandidate !
11  ptcut = 20, # while pfIsolatedMuonsEI are reco::PFCandidate !
12 
13  histoPSet = dict(dijetPSet = dict(
14  nbins = 200 ,
15  xmin = 0,
16  xmax = 1000.),
17  dijetPtThrPSet = dict(
18  nbins = 50 ,
19  xmin = 0.,
20  xmax = 100.)),
21 
22  numGenericTriggerEventPSet = dict(andOr = False,
23  dbLabel = "JetMETDQMTrigger", # 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 !
24  andOrHlt = True, # True:=OR; False:=AND
25  hltInputTag = "TriggerResults::HLT" ,
26  hltPaths = ["HLT_DiPFJetAve40_v*"], # HLT_ZeroBias_v*
27  errorReplyHlt = False,
28  verbosityLevel = 1),
29 
30 
31  denGenericTriggerEventPSet = dict(andOr = False,
32  dcsInputTag = "scalersRawToDigi",
33  dcsRecordInputTag = "onlineMetaDataDigis",
34  dcsPartitions = [24, 25, 26, 27, 28, 29], # 24-27: strip, 28-29: pixel, we should add all other detectors !
35  andOrDcs = False,
36  errorReplyDcs = True,
37  verbosityLevel = 1)
38 )