Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-03-26 01:50:58

0001 # The following comments couldn't be translated into the new config version:
0002 
0003 # upload to database 
0004 
0005 #string timetype = "timestamp"    
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         enable = cms.untracked.bool(True)
0017     ),
0018     debugModules = cms.untracked.vstring('')
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.poolDBESSource = cms.ESSource("PoolDBESSource",
0030    DBParameters = cms.PSet(
0031         messageLevel = cms.untracked.int32(2),
0032         authenticationPath = cms.untracked.string('/afs/cern.ch/cms/DB/conddb')
0033     ),
0034     connect = cms.string('sqlite_file:SiStripConditionsDBFile.db'),
0035     toGet = cms.VPSet(cms.PSet(
0036         record = cms.string('SiStripThresholdRcd'),
0037         tag = cms.string('SiStripThreshold_Fake_30X')
0038     ))
0039 )
0040 
0041 process.reader = cms.EDAnalyzer("SiStripThresholdReader",
0042                                 printDebug = cms.untracked.uint32(5)
0043                                )
0044 
0045 process.p1 = cms.Path(process.reader)
0046 
0047