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 
0009 process.source = cms.Source("EmptySource",
0010     numberEventsInRun = cms.untracked.uint32(1),
0011     firstRun = cms.untracked.uint32(1)
0012 )
0013 
0014 process.maxEvents = cms.untracked.PSet(
0015     input = cms.untracked.int32(1)
0016 )
0017 
0018 process.hv = cms.EDAnalyzer("DTTimeUtility",
0019 
0020         year   = cms.int32(2009),
0021         month  = cms.int32(  12),
0022         day    = cms.int32(  11),
0023         hour   = cms.int32(   0),
0024         minute = cms.int32(   0),
0025         second = cms.int32(   1),
0026 
0027         condTime = cms.int64(5445216652344191208),
0028 
0029         coralTime = cms.int64(1278584868675000000) )
0030 
0031 process.p = cms.Path(process.hv)
0032