File indexing completed on 2024-04-06 12:32:42
0001 import FWCore.ParameterSet.Config as cms
0002
0003 from SimGeneral.MixingModule.mixObjects_cfi import *
0004
0005 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
0006 mixCollectionValidation = DQMEDAnalyzer('MixCollectionValidation',
0007
0008 outputFile = cms.string(''),
0009 minBunch = cms.int32(-12),
0010 maxBunch = cms.int32(3),
0011 verbose = cms.untracked.bool(False),
0012 mixObjects = cms.PSet(
0013 mixCH = cms.PSet(
0014 mixCaloHits
0015 ),
0016 mixTracks = cms.PSet(
0017 mixSimTracks
0018 ),
0019 mixVertices = cms.PSet(
0020 mixSimVertices
0021 ),
0022 mixSH = cms.PSet(
0023 mixSimHits
0024 ),
0025 mixHepMC = cms.PSet(
0026 mixHepMCProducts
0027 )
0028 )
0029 )