File indexing completed on 2021-02-14 13:31:15
0001
0002
0003 import FWCore.ParameterSet.Config as cms
0004
0005
0006 process = cms.Process("L1RCTChannelMaskTest")
0007 process.l1RCTChannelMaskTest = cms.EDAnalyzer("L1RCTChannelMaskTester")
0008
0009
0010 process.maxEvents = cms.untracked.PSet(
0011 input = cms.untracked.int32(1)
0012 )
0013
0014 process.source = cms.Source("EmptySource")
0015
0016
0017 process.load("L1TriggerConfig.RCTConfigProducers.L1RCTConfig_cff")
0018
0019
0020 process.p = cms.Path(process.l1RCTChannelMaskTest)
0021
0022
0023