CMS 3D CMS Logo

PhotonMonitor_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from DQMOffline.Trigger.photonMonitoring_cfi import photonMonitoring
4 
5 hltPhotonmonitoring = photonMonitoring.clone(
6  FolderName = 'HLT/Photon/Photon200/',
7  met = "pfMet", # pfMet
8  jets = "ak4PFJets", # ak4PFJets, ak4PFJetsCHS
9  electrons = "gedGsfElectrons", # while pfIsolatedElectronsEI are reco::PFCandidate !
10  photons = "gedPhotons", # while pfIsolatedElectronsEI are reco::PFCandidate !
11 
12  histoPSet = dict(
13  lsPSet = dict(
14  nbins = 250,
15  xmin = 0.,
16  xmax = 2500.),
17 
18  photonPSet = dict(
19  nbins = 500 ,
20  xmin = 0.0,
21  xmax = 5000)
22  ),
23 
24  numGenericTriggerEventPSet = dict(
25  andOr = False,
26  #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 !
27  andOrHlt = True, # True:=OR; False:=AND
28  hltInputTag = "TriggerResults::HLT",
29  hltPaths = ["HLT_Photon175_v*"], # HLT_ZeroBias_v*
30  #hltDBKey = "EXO_HLT_MET",
31  errorReplyHlt = False,
32  verbosityLevel = 1),
33 
34 
35  denGenericTriggerEventPSet = dict(
36  andOr = False,
37  andOrHlt = True,
38  hltInputTag = "TriggerResults::HLT",
39  hltPaths = ["HLT_PFJet40_v*","HLT_PFJet60_v*","HLT_PFJet80_v*"], # HLT_ZeroBias_v*
40  errorReplyHlt = False,
41  dcsInputTag = "scalersRawToDigi",
42  dcsRecordInputTag = "onlineMetaDataDigis",
43  dcsPartitions = [ 24, 25, 26, 27, 28, 29], # 24-27: strip, 28-29: pixel, we should add all other detectors !
44  andOrDcs = False,
45  errorReplyDcs = True,
46  verbosityLevel = 1)
47 )
48