File indexing completed on 2024-04-06 11:59:53
0001
0002
0003
0004
0005
0006
0007 import FWCore.ParameterSet.Config as cms
0008
0009 process = cms.Process("Reader")
0010
0011 process.MessageLogger = cms.Service("MessageLogger",
0012 cerr = cms.untracked.PSet(
0013 enable = cms.untracked.bool(False)
0014 ),
0015 cout = cms.untracked.PSet(
0016 threshold = cms.untracked.string('INFO')
0017 ),
0018 debugModules = cms.untracked.vstring('*'),
0019 files = cms.untracked.PSet(
0020 DetVOffReaderDebug = cms.untracked.PSet(
0021 threshold = cms.untracked.string('DEBUG')
0022 ),
0023 DetVOffReaderSummary = cms.untracked.PSet(
0024 threshold = cms.untracked.string('INFO')
0025 )
0026 )
0027 )
0028
0029
0030
0031
0032
0033
0034
0035
0036
0037
0038
0039
0040
0041 process.maxEvents = cms.untracked.PSet(
0042 input = cms.untracked.int32(1)
0043 )
0044 process.source = cms.Source("EmptySource",
0045 numberEventsInRun = cms.untracked.uint32(1),
0046 firstRun = cms.untracked.uint32(100000)
0047 )
0048
0049 process.poolDBESSource = cms.ESSource("PoolDBESSource",
0050 BlobStreamerName = cms.untracked.string('TBufferBlobStreamingService'),
0051 DBParameters = cms.PSet(
0052 messageLevel = cms.untracked.int32(2),
0053 authenticationPath = cms.untracked.string('/afs/cern.ch/cms/DB/conddb')
0054 ),
0055 timetype = cms.untracked.string('runnumber'),
0056 connect = cms.string('sqlite_file:dbfile.db'),
0057
0058 toGet = cms.VPSet(cms.PSet(
0059 record = cms.string('SiStripDetVOffRcd'),
0060
0061 tag = cms.string('SiStripDetVOff_Ideal_31X')
0062 ))
0063 )
0064
0065 process.reader = cms.EDFilter("SiStripDetVOffDummyPrinter")
0066
0067 process.p1 = cms.Path(process.reader)
0068
0069