File indexing completed on 2023-10-25 09:38:21
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("SiStripSummaryReader")
0004
0005 process.MessageLogger = cms.Service("MessageLogger",
0006 cerr = cms.untracked.PSet(
0007 enable = cms.untracked.bool(False)
0008 ),
0009 cout = cms.untracked.PSet(
0010 threshold = cms.untracked.string('INFO')
0011 ),
0012 files = cms.untracked.PSet(
0013 SiStripSummaryReader = cms.untracked.PSet(
0014
0015 )
0016 )
0017 )
0018
0019
0020 process.source = cms.Source("EmptySource",
0021 numberEventsInRun = cms.untracked.uint32(1),
0022 firstRun = cms.untracked.uint32(1)
0023 )
0024
0025
0026 process.maxEvents = cms.untracked.PSet(
0027 input = cms.untracked.int32(1)
0028 )
0029
0030 process.poolDBESSource = cms.ESSource("PoolDBESSource",
0031 BlobStreamerName = cms.untracked.string('TBufferBlobStreamingService'),
0032 DBParameters = cms.PSet(
0033 messageLevel = cms.untracked.int32(2),
0034 authenticationPath = cms.untracked.string('/afs/cern.ch/cms/DB/conddb')
0035 ),
0036 timetype = cms.untracked.string('runnumber'),
0037 connect = cms.string('sqlite_file:SiStripConditionsDBFile.db'),
0038 toGet = cms.VPSet(cms.PSet(
0039 record = cms.string('SiStripSummaryRcd'),
0040 tag = cms.string('SiStripSummary_test1')
0041 ))
0042 )
0043
0044
0045 process.summaryReader = cms.EDAnalyzer("SiStripSummaryReader")
0046
0047 process.p1 = cms.Path(process.summaryReader)
0048
0049