CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_4_5_patch3/src/SimGeneral/MixingModule/python/cfwriter_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 from SimGeneral.MixingModule.mixObjects_cfi import *
00004 CFWriter = cms.EDProducer("CFWriter",
00005     maxBunch = cms.int32(3),
00006     minBunch = cms.int32(-5),
00007     
00008     mixObjects = cms.PSet(
00009     mixCH = cms.PSet(
00010       mixCaloHits
00011     ),
00012     mixTracks = cms.PSet(
00013       mixSimTracks
00014     ),
00015    mixVertices = cms.PSet(
00016       mixSimVertices
00017     ),
00018     mixSH = cms.PSet(
00019       mixSimHits
00020     ),
00021     mixHepMC = cms.PSet(
00022       mixHepMCProducts
00023     )
00024     )
00025 )
00026