Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:32:42

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("GlobalVal")
0004 process.load("SimGeneral.MixingModule.mixLowLumPU_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('/store/relval/CMSSW_3_1_0_pre11/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG/STARTUP31X_V1-v1/0001/FEAEE71D-D664-DE11-88EA-003048767E51.root')
0015 )
0016 
0017 process.output = cms.OutputModule("PoolOutputModule",
0018     outputCommands = process.FEVTDEBUGEventContent.outputCommands,
0019     fileName = cms.untracked.string('mixCollValStandardMM10evs.root')
0020 )
0021 
0022 
0023 process.maxEvents = cms.untracked.PSet(
0024     input = cms.untracked.int32(10)
0025 )
0026 
0027 process.load("Validation.Mixing.mixCollectionValidation_cfi")
0028 
0029 process.mix_step = cms.Path(process.mix+process.mixCollectionValidation)
0030 process.end_step = cms.Path(process.endOfProcess)
0031 process.out_step = cms.EndPath(process.output)
0032 
0033 process.schedule = cms.Schedule(process.mix_step, process.end_step, process.out_step)
0034 
0035 process.mix.input.fileNames = cms.untracked.vstring(
0036     '/store/relval/CMSSW_3_1_0_pre11/RelValMinBias/GEN-SIM-DIGI-RAW-HLTDEBUG/MC_31X_V1-v1/0000/ECDB1818-A964-DE11-9B4B-001D09F24934.root',
0037     '/store/relval/CMSSW_3_1_0_pre11/RelValMinBias/GEN-SIM-DIGI-RAW-HLTDEBUG/MC_31X_V1-v1/0000/D245A5BB-4C64-DE11-9F79-001D09F248F8.root',
0038     '/store/relval/CMSSW_3_1_0_pre11/RelValMinBias/GEN-SIM-DIGI-RAW-HLTDEBUG/MC_31X_V1-v1/0000/C65577F4-EC64-DE11-8D4A-001D09F251CC.root',
0039     '/store/relval/CMSSW_3_1_0_pre11/RelValMinBias/GEN-SIM-DIGI-RAW-HLTDEBUG/MC_31X_V1-v1/0000/965505C4-9264-DE11-A3BC-001D09F232B9.root',
0040     '/store/relval/CMSSW_3_1_0_pre11/RelValMinBias/GEN-SIM-DIGI-RAW-HLTDEBUG/MC_31X_V1-v1/0000/5E309A39-7264-DE11-978E-001D09F2A690.root')
0041