Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:01:55

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("TEST")
0004 process.source = cms.Source("EmptyIOVSource",
0005     lastValue = cms.uint64(8),
0006     timetype = cms.string('runnumber'),
0007     firstValue = cms.uint64(2),
0008     interval = cms.uint64(2)
0009 )
0010 
0011 
0012