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 
0005 from L1TriggerConfig.L1ScalesProducers.L1CaloInputScalesConfig_cff import *
0006 #from CalibCalorimetry.EcalTPGTools.ecalTPGScale_cff import *
0007 from L1TriggerConfig.RCTConfigProducers.L1RCTConfigPatternTests_cfi import *
0008 
0009 # RCT parameters
0010 l1RctParamsRecords = cms.ESSource("EmptyESSource",
0011     recordName = cms.string('L1RCTParametersRcd'),
0012     iovIsRunNotTime = cms.bool(True),
0013     firstValid = cms.vuint32(1)
0014 )
0015 
0016 # RCT channel mask
0017 l1RctMaskRcds = cms.ESSource("EmptyESSource",
0018     recordName = cms.string('L1RCTChannelMaskRcd'),
0019     iovIsRunNotTime = cms.bool(True),
0020     firstValid = cms.vuint32(0)
0021 )
0022 
0023 
0024