Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:02:49

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("TEST")
0004 
0005 process.PoolDBESSource = cms.ESSource("PoolDBESSource",
0006     loadAll = cms.bool(True),
0007     timetype = cms.string('runnumber'),
0008     toGet = cms.VPSet(
0009 ##### toGet BEGIN #####
0010 ##### toGet END #####
0011     ),
0012     connect = cms.string('sqlite_file:test.db'),
0013     DBParameters = cms.PSet(
0014         messageLevel = cms.untracked.int32(0),
0015         authenticationPath = cms.untracked.string('.')
0016     )
0017 )
0018 
0019 process.source = cms.Source("EmptyIOVSource",
0020     timetype = cms.string('runnumber'),
0021     firstValue = cms.uint64(1),
0022     lastValue  = cms.uint64(5),
0023     interval = cms.uint64(1)
0024 )
0025 
0026 ##### PROCESS LIST #####
0027 
0028 process.p = cms.Path(
0029 ##### PROCESS BEGIN #####
0030 ##### PROCESS END #####
0031                     )