File indexing completed on 2024-04-06 12:08:48
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process('TEST')
0004
0005 process.source = cms.Source("PoolSource",
0006 fileNames = cms.untracked.vstring(
0007 'file:/home/nc302/cmssw/data/111195/USC.00111195.0001.A.storageManager.00.0000.root'
0008 )
0009 )
0010
0011
0012 process.maxEvents = cms.untracked.PSet(
0013 input = cms.untracked.int32(1)
0014 )
0015
0016 process.load('FWCore/MessageService/MessageLogger_cfi')
0017 process.MessageLogger = cms.Service("MessageLogger",
0018 cerr = cms.untracked.PSet(
0019 noLineBreaks = cms.untracked.bool(False),
0020 threshold = cms.untracked.string('ERROR')
0021 ),
0022 files = cms.untracked.PSet(
0023 debug = cms.untracked.PSet(
0024 noLineBreaks = cms.untracked.bool(False),
0025 threshold = cms.untracked.string('DEBUG')
0026 ),
0027 error = cms.untracked.PSet(
0028 noLineBreaks = cms.untracked.bool(False),
0029 threshold = cms.untracked.string('ERROR')
0030 ),
0031 info = cms.untracked.PSet(
0032 noLineBreaks = cms.untracked.bool(False),
0033 threshold = cms.untracked.string('INFO')
0034 ),
0035 warning = cms.untracked.PSet(
0036 noLineBreaks = cms.untracked.bool(False),
0037 threshold = cms.untracked.string('WARNING')
0038 )
0039 ),
0040 suppressDebug = cms.untracked.vstring(),
0041 suppressInfo = cms.untracked.vstring(),
0042 suppressWarning = cms.untracked.vstring()
0043 )
0044
0045 process.load('DQM.SiStripMonitorHardware.siStripFEDDump_cfi')
0046 process.siStripFEDDump.FEDID = 260
0047
0048 process.p = cms.Path( process.siStripFEDDump )