Go to the documentation of this file.00001
00002
00003
00004
00005 import FWCore.ParameterSet.Config as cms
00006
00007
00008 from SimGeneral.MixingModule.mixObjects_cfi import *
00009 from SimGeneral.MixingModule.mixPoolSource_cfi import *
00010
00011 mix = cms.EDProducer("MixingModule",
00012 LabelPlayback = cms.string(''),
00013 maxBunch = cms.int32(3),
00014 minBunch = cms.int32(-5),
00015
00016 bunchspace = cms.int32(25),
00017 mixProdStep1 = cms.bool(False),
00018 mixProdStep2 = cms.bool(False),
00019
00020 playback = cms.untracked.bool(False),
00021 useCurrentProcessOnly = cms.bool(False),
00022
00023 input = cms.SecSource("PoolSource",
00024 nbPileupEvents = cms.PSet(
00025 sigmaInel = cms.double(80.0),
00026 Lumi = cms.double(10.0)
00027 ),
00028 seed = cms.int32(1234567),
00029 type = cms.string('poisson'),
00030 sequential = cms.untracked.bool(False),
00031 fileNames = FileNames
00032 ),
00033 mixObjects = cms.PSet(
00034 mixCH = cms.PSet(
00035 mixCaloHits
00036 ),
00037 mixTracks = cms.PSet(
00038 mixSimTracks
00039 ),
00040 mixVertices = cms.PSet(
00041 mixSimVertices
00042 ),
00043 mixSH = cms.PSet(
00044 mixSimHits
00045 ),
00046 mixHepMC = cms.PSet(
00047 mixHepMCProducts
00048 )
00049 )
00050 )
00051
00052