Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:22:24

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # ECAL and HCAL scales
0004 from L1TriggerConfig.L1ScalesProducers.L1CaloInputScalesConfig_cff import *
0005 from L1TriggerConfig.RCTConfigProducers.L1RCTConfig_cfi import *
0006 # RCT parameters
0007 l1RctParamsRecords = cms.ESSource("EmptyESSource",
0008     recordName = cms.string('L1RCTParametersRcd'),
0009     iovIsRunNotTime = cms.bool(True),
0010     firstValid = cms.vuint32(1)
0011 )
0012 
0013 # RCT channel mask
0014 l1RctMaskRcds = cms.ESSource("EmptyESSource",
0015     recordName = cms.string('L1RCTChannelMaskRcd'),
0016     iovIsRunNotTime = cms.bool(True),
0017     firstValid = cms.vuint32(1)
0018 )
0019 
0020 
0021