File indexing completed on 2024-04-06 12:10:15
0001
0002
0003
0004
0005
0006 import FWCore.ParameterSet.Config as cms
0007 import FWCore.ParameterSet.VarParsing as VarParsing
0008
0009 process = cms.Process('RECO')
0010
0011
0012 process.load('FWCore.MessageService.MessageLogger_cfi')
0013 process.load('Configuration.StandardSequences.EndOfProcess_cff')
0014
0015 process.maxEvents = cms.untracked.PSet(
0016 input = cms.untracked.int32(-1),
0017 )
0018
0019 from DQMServices.StreamerIO.DQMProtobufReader_cff import DQMProtobufReader
0020 process.source = DQMProtobufReader
0021
0022 process.MessageLogger = cms.Service("MessageLogger",
0023 destinations = cms.untracked.vstring("cerr"),
0024 cerr = cms.untracked.PSet(
0025 threshold = cms.untracked.string('DEBUG'),
0026 ),
0027
0028 )
0029
0030
0031
0032
0033
0034 process.configurationMetadata = cms.untracked.PSet(
0035 version = cms.untracked.string('$Revision: 1.19 $'),
0036 annotation = cms.untracked.string('test_11_a_1 nevts:100'),
0037 name = cms.untracked.string('Applications')
0038 )
0039
0040 process.analyzer= cms.EDAnalyzer("DQMStoreAnalyzer");
0041 process.p = cms.Path(process.analyzer)
0042
0043 process.options = cms.untracked.PSet( SkipEvent = cms.untracked.vstring('ProductNotFound') )
0044 process.endjob_step = cms.EndPath(process.endOfProcess)
0045 process.schedule = cms.Schedule(process.p,process.endjob_step)