Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 process = cms.Process('MERGEDQM')
00004
00005 process.load('Configuration.EventContent.EventContent_cff')
00006
00007 process.maxEvents = cms.untracked.PSet(
00008 input = cms.untracked.int32(-1)
00009 )
00010
00011
00012 process.source = cms.Source("PoolSource",
00013 processingMode = cms.untracked.string('RunsAndLumis'),
00014 fileNames = cms.untracked.vstring()
00015 )
00016
00017 process.options = cms.untracked.PSet()
00018
00019
00020 process.output = cms.OutputModule("PoolOutputModule",
00021 splitLevel = cms.untracked.int32(0),
00022 outputCommands = process.DQMEventContent.outputCommands,
00023 fileName = cms.untracked.string(''),
00024 dataset = cms.untracked.PSet(
00025 filterName = cms.untracked.string(''),
00026 dataTier = cms.untracked.string('')
00027 )
00028 )
00029
00030 process.DQMoutput_step = cms.EndPath(process.output)