File indexing completed on 2024-04-06 12:03:30
0001
0002
0003
0004
0005
0006
0007 import FWCore.ParameterSet.Config as cms
0008
0009 process = cms.Process("Builder")
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 enable = cms.untracked.bool(True),
0017 threshold = cms.untracked.string('INFO')
0018 )
0019 )
0020
0021 process.maxEvents = cms.untracked.PSet(
0022 input = cms.untracked.int32(1)
0023 )
0024 process.source = cms.Source("EmptySource",
0025 numberEventsInRun = cms.untracked.uint32(1),
0026 firstRun = cms.untracked.uint32(1)
0027 )
0028
0029 process.siStripThresholdBuilder= cms.EDAnalyzer("SiStripThresholdBuilder")
0030
0031 process.PoolDBOutputService = cms.Service("PoolDBOutputService",
0032 BlobStreamerName = cms.untracked.string('TBufferBlobStreamingService'),
0033 DBParameters = cms.PSet(authenticationPath = cms.untracked.string('/afs/cern.ch/cms/DB/conddb')),
0034 timetype = cms.untracked.string('runnumber'),
0035 connect = cms.string('sqlite_file:SiStripConditionsDBFile.db'),
0036 toPut = cms.VPSet(cms.PSet(
0037 record = cms.string('SiStripThresholdRcd'),
0038 tag = cms.string('SiStripThreshold_Fake_30X')
0039 ))
0040 )
0041
0042 process.p1 = cms.Path(process.siStripThresholdBuilder)
0043
0044