CMS 3D CMS Logo

mixCollectionValidation_Step2_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
4 
5 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
6 mixCollectionValidation = DQMEDAnalyzer('MixCollectionValidation',
7  outputFile = cms.string('histosMixCollStep2MM.root'),
8  minBunch = cms.int32(-12),
9  maxBunch = cms.int32(3),
10  verbose = cms.untracked.bool(False),
11  mixObjects = cms.PSet(
12  mixCH = cms.PSet(
13  mixCaloHits
14  ),
15  mixTracks = cms.PSet(
16  mixSimTracks
17  ),
18  mixVertices = cms.PSet(
19  mixSimVertices
20  ),
21  mixSH = cms.PSet(
22  mixSimHits
23  ),
24  mixHepMC = cms.PSet(
25  mixHepMCProducts
26  )
27  )
28 )