import FWCore.ParameterSet.Config as cms from SimGeneral.MixingModule.mixObjects_cfi import * process = cms.Process("MIXTEST") #process.load("SimGeneral.MixingModule.mixLowLumPU_mixProd_cfi") #process.load("SimGeneral.MixingModule.mixLowLumPU_cfi") process.source = cms.Source("PoolSource", fileNames = cms.untracked.vstring( 'file:SingleNuE10_cfi_GEN_SIM_DIGIPREMIX_L1_DIGI2RAW_PU.root') ) process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(3) ) process.playBackRead = cms.EDAnalyzer('PlayBackRead', LabelPlayback = cms.string('mix') ) process.out = cms.OutputModule("PoolOutputModule", outputCommands = cms.untracked.vstring('drop *_*_*_*', 'keep *_*_*_MIXTEST'), fileName = cms.untracked.string('file:test.root') ) process.p = cms.Path(process.playBackRead) process.outpath = cms.EndPath(process.out)