File indexing completed on 2024-04-06 12:30:38
0001
0002
0003
0004
0005 import FWCore.ParameterSet.Config as cms
0006
0007
0008 from SimGeneral.MixingModule.mixObjects_cfi import theMixObjects
0009 from SimGeneral.MixingModule.mixPoolSource_cfi import *
0010 from SimGeneral.MixingModule.digitizers_cfi import *
0011
0012 mix = cms.EDProducer("MixingModule",
0013 digitizers = cms.PSet(theDigitizers),
0014 LabelPlayback = cms.string(''),
0015 maxBunch = cms.int32(3),
0016 minBunch = cms.int32(-5),
0017
0018 bunchspace = cms.int32(25),
0019 mixProdStep1 = cms.bool(False),
0020 mixProdStep2 = cms.bool(False),
0021
0022 playback = cms.untracked.bool(False),
0023 useCurrentProcessOnly = cms.bool(False),
0024
0025 input = cms.SecSource("EmbeddedRootSource",
0026 nbPileupEvents = cms.PSet(
0027 sigmaInel = cms.double(80.0),
0028 Lumi = cms.double(2.8)
0029 ),
0030 type = cms.string('poisson'),
0031 sequential = cms.untracked.bool(False),
0032 fileNames = FileNames
0033 ),
0034 mixObjects = cms.PSet(theMixObjects)
0035 )
0036
0037