Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-04-17 02:42:00

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     toGet = cms.VPSet(
0010     cms.PSet(
0011     record = cms.string('DTCCBConfigRcd'),
0012     tag = cms.string('conf_test')
0013     ),
0014     cms.PSet(
0015     record = cms.string('DTKeyedConfigListRcd'),
0016     tag = cms.string('DT_keyedConfListIOV_V01')
0017     ),
0018     cms.PSet(
0019     record = cms.string('DTKeyedConfigContainerRcd'),
0020     tag = cms.string('DT_keyedConfBricks_V01')
0021     )
0022     ),
0023     connect = cms.string('sqlite_file:testconf.db'),
0024     DBParameters = cms.PSet(
0025         messageLevel = cms.untracked.int32(0),
0026         authenticationPath = cms.untracked.string('.')
0027     )
0028 )
0029 
0030 process.source = cms.Source("EmptySource",
0031     numberEventsInRun = cms.untracked.uint32(1),
0032     firstRun = cms.untracked.uint32(54544)
0033 )
0034 
0035 process.maxEvents = cms.untracked.PSet(
0036     input = cms.untracked.int32(1)
0037 )
0038 
0039 process.conf = cms.EDAnalyzer("DTKeyedConfigDump",
0040     dumpCCBKeys = cms.bool(True),
0041 #    dumpCCBKeys = cms.bool(False),
0042     dumpAllData = cms.bool(True)
0043 #    dumpAllData = cms.bool(False)
0044 )
0045 
0046 process.p = cms.Path(process.conf)
0047