Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 11:13:27

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 RPCConeBuilder = cms.ESProducer("RPCConeBuilder",
0004     towerBeg = cms.int32(0),
0005     towerEnd = cms.int32(16)
0006 )
0007 
0008 rpcconesrc = cms.ESSource("EmptyESSource",
0009     recordName = cms.string('L1RPCConeBuilderRcd'),
0010     iovIsRunNotTime = cms.bool(True),
0011     firstValid = cms.vuint32(1)
0012 )
0013 
0014