CMS 3D CMS Logo

DQMPhysics_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
4 from DQM.Physics.ewkMuDQM_cfi import *
5 from DQM.Physics.ewkElecDQM_cfi import *
11 from DQM.Physics.singleTopDQM_cfi import *
13 from DQM.Physics.susyDQM_cfi import *
14 from DQM.Physics.HiggsDQM_cfi import *
15 from DQM.Physics.ExoticaDQM_cfi import *
16 from DQM.Physics.B2GDQM_cfi import *
20 
21 dqmPhysics = cms.Sequence( bphysicsOniaDQM
22  *ewkMuDQM
23  *ewkElecDQM
24  *qcdPhotonsDQM
25  *topSingleMuonMediumDQM
26  *topSingleElectronMediumDQM
27  *singleTopMuonMediumDQM
28  *singleTopElectronMediumDQM
29  *DiMuonDQM
30  *DiElectronDQM
31  *ElecMuonDQM
32  *susyDQM
33  *HiggsDQM
34  *ExoticaDQM
35  *B2GDQM
36  )
37 
38 from Configuration.Eras.Modifier_phase1Pixel_cff import phase1Pixel
39 phase1Pixel.toReplaceWith(dqmPhysics, dqmPhysics.copyAndExclude([ # FIXME
40  ewkMuDQM, # Excessive printouts because 2017 doesn't have HLT yet
41  ewkElecDQM, # Excessive printouts because 2017 doesn't have HLT yet
42  ewkMuLumiMonitorDQM, # Excessive printouts because 2017 doesn't have HLT yet
43 ]))
44 from Configuration.Eras.Modifier_pA_2016_cff import pA_2016
45 dqmPhysicspA = dqmPhysics.copy()
46 dqmPhysicspA += CentralitypADQM
47 pA_2016.toReplaceWith(dqmPhysics, dqmPhysicspA)
48 
49 bphysicsOniaDQMHI = bphysicsOniaDQM.clone(vertex=cms.InputTag("hiSelectedVertex"))
50 dqmPhysicsHI = cms.Sequence(bphysicsOniaDQMHI+CentralityDQM)
51 
53 dqmPhysicsCosmics = cms.Sequence(dqmPhysics)
54 dqmPhysicsCosmics.replace(qcdPhotonsDQM, qcdPhotonsCosmicDQM)