File indexing completed on 2023-03-17 11:28:01
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("GlobalVal")
0004 process.load("SimGeneral.MixingModule.mixLowLumPU_mixProdStep2_cfi")
0005
0006 process.load("Configuration.StandardSequences.Services_cff")
0007
0008 process.load("FWCore.MessageLogger.MessageLogger_cfi")
0009 process.load("Configuration.StandardSequences.EndOfProcess_cff")
0010 process.load('Configuration.EventContent.EventContent_cff')
0011
0012
0013 process.source = cms.Source("PoolSource",
0014 fileNames = cms.untracked.vstring(
0015 '/store/relval/CMSSW_3_1_1/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG/MC_31X_V2-v1/0002/EA8E5AF7-576B-DE11-BA98-001D09F24498.root',
0016 '/store/relval/CMSSW_3_1_1/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG/MC_31X_V2-v1/0002/E8627E8B-5A6B-DE11-A8F4-001D09F2438A.root',
0017 '/store/relval/CMSSW_3_1_1/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG/MC_31X_V2-v1/0002/D66DD273-5C6B-DE11-A8DB-001D09F290CE.root',
0018 '/store/relval/CMSSW_3_1_1/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG/MC_31X_V2-v1/0002/CC3232F2-596B-DE11-8C47-0019B9F704D6.root',
0019 '/store/relval/CMSSW_3_1_1/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG/MC_31X_V2-v1/0002/AAFDF230-5C6B-DE11-BF0A-001D09F24498.root',
0020 '/store/relval/CMSSW_3_1_1/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG/MC_31X_V2-v1/0002/9A28D939-576B-DE11-811D-000423D944F0.root',
0021 '/store/relval/CMSSW_3_1_1/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG/MC_31X_V2-v1/0002/94F72FC0-5B6B-DE11-8215-000423D6AF24.root',
0022 '/store/relval/CMSSW_3_1_1/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG/MC_31X_V2-v1/0002/94710927-5B6B-DE11-92EA-001D09F290CE.root',
0023 '/store/relval/CMSSW_3_1_1/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG/MC_31X_V2-v1/0002/88D87820-5B6B-DE11-B522-0019B9F704D6.root',
0024 '/store/relval/CMSSW_3_1_1/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG/MC_31X_V2-v1/0002/7E7FB3BC-E16B-DE11-9374-000423D8F63C.root',
0025 '/store/relval/CMSSW_3_1_1/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG/MC_31X_V2-v1/0002/7640E138-576B-DE11-B907-000423D99AAE.root'
0026 )
0027 )
0028
0029 process.output = cms.OutputModule("PoolOutputModule",
0030 outputCommands = process.FEVTDEBUGEventContent.outputCommands,
0031 fileName = cms.untracked.string('mixCollValStep2.root')
0032 )
0033
0034
0035 process.maxEvents = cms.untracked.PSet(
0036 input = cms.untracked.int32(10)
0037 )
0038
0039 process.MessageLogger = cms.Service("MessageLogger",
0040 debugModules = cms.untracked.vstring('mix'),
0041 cout = cms.untracked.PSet(
0042 threshold = cms.untracked.string('DEBUG'),
0043 DEBUG = cms.untracked.PSet(
0044 limit = cms.untracked.int32(0)
0045 ),
0046 MixingModule = cms.untracked.PSet(
0047 limit = cms.untracked.int32(1000000)
0048 )
0049 ),
0050 categories = cms.untracked.vstring('MixingModule'),
0051 destinations = cms.untracked.vstring('cout')
0052 )
0053 process.load("Validation.Mixing.mixCollectionValidation_Step2_cfi")
0054
0055 process.mix_step = cms.Path(process.mix+process.mixCollectionValidation)
0056 process.end_step = cms.Path(process.endOfProcess)
0057 process.out_step = cms.EndPath(process.output)
0058
0059 process.schedule = cms.Schedule(process.mix_step, process.end_step, process.out_step)
0060
0061 process.mix.input.fileNames = cms.untracked.vstring('file:MixedSources.root')