Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:10:54

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 caloLayer1Digis = cms.EDProducer(
0004     "L1TRawToDigi",
0005     Setup = cms.string("stage2::CaloLayer1Setup"),
0006     InputLabel = cms.InputTag("rawDataCollector"),
0007     FedIds = cms.vint32(1354, 1356, 1358),
0008     FWId = cms.uint32(0x12345678),
0009     debug = cms.untracked.bool(False),
0010     CTP7 = cms.untracked.bool(True)
0011 )
0012