Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 # The following comments couldn't be translated into the new config version:
0002 
0003 # Configuration file for EventSetupTest_t
0004 
0005 import FWCore.ParameterSet.Config as cms
0006 
0007 process = cms.Process("TEST")
0008 process.PoolDBESSource = cms.ESSource("PoolDBESSource",
0009     loadAll = cms.bool(True),
0010     timetype = cms.string('runnumber'),
0011     toGet = cms.VPSet(
0012     cms.PSet(
0013     record = cms.string('DTCCBConfigRcd'),
0014     tag = cms.string('conf_test')
0015     ),
0016     cms.PSet(
0017     record = cms.string('DTKeyedConfigListRcd'),
0018     tag = cms.string('DT_keyedConfListIOV_V01')
0019     ),
0020     cms.PSet(
0021     record = cms.string('DTKeyedConfigContainerRcd'),
0022     tag = cms.string('DT_keyedConfBricks_V01')
0023     )
0024     ),
0025     connect = cms.string('sqlite_file:testconf.db'),
0026     DBParameters = cms.PSet(
0027         messageLevel = cms.untracked.int32(0),
0028         authenticationPath = cms.untracked.string('.')
0029     )
0030 )
0031 
0032 process.source = cms.Source("EmptySource",
0033     numberEventsInRun = cms.untracked.uint32(1),
0034     firstRun = cms.untracked.uint32(54544)
0035 )
0036 
0037 process.maxEvents = cms.untracked.PSet(
0038     input = cms.untracked.int32(1)
0039 )
0040 
0041 process.conf = cms.EDAnalyzer("DTKeyedConfigDump",
0042     dumpCCBKeys = cms.bool(True),
0043 #    dumpCCBKeys = cms.bool(False),
0044     dumpAllData = cms.bool(True)
0045 #    dumpAllData = cms.bool(False)
0046 )
0047 
0048 process.p = cms.Path(process.conf)
0049