Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 10:46:33

0001 #sometime in laste 1980
0002 start = 10*365*3600*24
0003 end = start+100
0004 import FWCore.ParameterSet.Config as cms
0005 process = cms.Process("TEST")
0006 process.source = cms.Source("EmptyIOVSource",
0007     timetype = cms.string('timestamp'),
0008     firstValue = cms.uint64(start<<32),
0009     lastValue = cms.uint64(end<<32),
0010     interval = cms.uint64(10<<32)
0011 )
0012 
0013 
0014