Back to home page

Project CMSSW displayed by LXR

 
 

    


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_4sources_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/mc/2007/12/2/RelVal-RelValSingleElectronPt35-1196631782/0000/52388364-7CA1-DC11-A0B9-003048562A9E.root')
0014 )
0015 
0016 process.maxEvents = cms.untracked.PSet(
0017     input = cms.untracked.int32(1)
0018 )
0019 process.out = cms.OutputModule("PoolOutputModule",
0020     outputCommands = cms.untracked.vstring('drop *_*_*_*', 
0021         'keep *_*_*_PRODMIX'),
0022     fileName = cms.untracked.string('file:Cum_4s.root')
0023 )
0024 
0025 process.MessageLogger = cms.Service("MessageLogger",
0026     cerr = cms.untracked.PSet(
0027         enable = cms.untracked.bool(False)
0028     ),
0029     cout = cms.untracked.PSet(
0030         DEBUG = cms.untracked.PSet(
0031             limit = cms.untracked.int32(0)
0032         ),
0033         MixingModule = cms.untracked.PSet(
0034             limit = cms.untracked.int32(1000000)
0035         ),
0036         enable = cms.untracked.bool(True),
0037         threshold = cms.untracked.string('DEBUG')
0038     ),
0039     debugModules = cms.untracked.vstring('mix')
0040 )
0041 
0042 process.p = cms.Path(process.mix)
0043 process.outpath = cms.EndPath(process.out)
0044 
0045