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 # FIXME: broken after PR #14312
23  #*ewkElecDQM
24  #*ewkMuLumiMonitorDQM
25  *qcdPhotonsDQM
26  *topSingleMuonMediumDQM
27  *topSingleElectronMediumDQM
28  *singleTopMuonMediumDQM
29  *singleTopElectronMediumDQM
30  *DiMuonDQM
31  *DiElectronDQM
32  *ElecMuonDQM
33  *susyDQM
34  *HiggsDQM
35  *ExoticaDQM
36  *B2GDQM
37  )
38 
39 from Configuration.Eras.Modifier_phase1Pixel_cff import phase1Pixel
40 phase1Pixel.toReplaceWith(dqmPhysics, dqmPhysics.copyAndExclude([ # FIXME
41  ewkMuDQM, # Excessive printouts because 2017 doesn't have HLT yet
42  ewkElecDQM, # Excessive printouts because 2017 doesn't have HLT yet
43  ewkMuLumiMonitorDQM, # Excessive printouts because 2017 doesn't have HLT yet
44 ]))
45 from Configuration.StandardSequences.Eras import eras
46 dqmPhysicspA = dqmPhysics.copy()
47 dqmPhysicspA += CentralitypADQM
48 eras.pA_2016.toReplaceWith(dqmPhysics, dqmPhysicspA)
49 
50 bphysicsOniaDQMHI = bphysicsOniaDQM.clone(vertex=cms.InputTag("hiSelectedVertex"))
51 dqmPhysicsHI = cms.Sequence(bphysicsOniaDQMHI+CentralityDQM)
52 
54 dqmPhysicsCosmics = cms.Sequence(dqmPhysics)
55 dqmPhysicsCosmics.replace(qcdPhotonsDQM, qcdPhotonsCosmicDQM)