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 process = cms.Process("TEST")
0003 process.source = cms.Source("EmptyIOVSource",
0004     timetype = cms.string('lumiid'),
0005     firstValue = cms.uint64((1211<<32)+1),
0006     lastValue = cms.uint64((1211<<32)+8),
0007     interval = cms.uint64(2)
0008 )
0009 
0010 
0011