File indexing completed on 2024-04-06 12:30:39
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("PRODMIX")
0004 process.load("SimGeneral.MixingModule.mixLowLumPU_5sources_cfi")
0005
0006 process.RandomNumberGeneratorService = cms.Service("RandomNumberGeneratorService",
0007 moduleSeeds = cms.PSet(
0008 mix = cms.untracked.uint32(12345)
0009 )
0010 )
0011
0012 process.source = cms.Source("PoolSource",
0013 fileNames = cms.untracked.vstring('rfio:/castor/cern.ch/cms/store/relval/2008/4/5/RelVal-RelValSingleElectronPt35-1207397810/0000/20AC78F1-1403-DD11-B5CC-000423D987E0.root')
0014 )
0015
0016 process.maxEvents = cms.untracked.PSet(
0017 input = cms.untracked.int32(10)
0018 )
0019 process.out = cms.OutputModule("PoolOutputModule",
0020 outputCommands = cms.untracked.vstring('drop *_*_*_*',
0021 'keep *_*_*_PRODMIX'),
0022 fileName = cms.untracked.string('file:Cum_5s.root')
0023 )
0024
0025 process.MessageLogger = cms.Service("MessageLogger",
0026 debugModules = cms.untracked.vstring('mix'),
0027 cout = cms.untracked.PSet(
0028 threshold = cms.untracked.string('DEBUG'),
0029 DEBUG = cms.untracked.PSet(
0030 limit = cms.untracked.int32(0)
0031 ),
0032 MixingModule = cms.untracked.PSet(
0033 limit = cms.untracked.int32(1000000)
0034 )
0035 ),
0036 categories = cms.untracked.vstring('MixingModule'),
0037 destinations = cms.untracked.vstring('cout')
0038 )
0039
0040 process.p = cms.Path(process.mix)
0041 process.outpath = cms.EndPath(process.out)
0042 process.mix.cosmics.type = 'none'
0043 process.mix.beamhalo_minus.type = 'none'
0044 process.mix.beamhalo_plus.type = 'none'
0045
0046