Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 #
0004 l1GtParameters = cms.ESProducer("L1GtParametersTrivialProducer",
0005     
0006     # number of bunch crossing in the GT readout record: 3 bx (standard), 5 bx (debug)
0007     TotalBxInEvent = cms.int32(3),
0008 
0009     # list of active boards for L1 GT DAQ record (actually 16 bits)
0010     # default: all active 0xFFFF
0011     DaqActiveBoards = cms.uint32(0xFFFF),
0012     
0013     # list of active boards for L1 GT EVM record (actually 16 bits)
0014     # default: all active 0xFFFF
0015     EvmActiveBoards = cms.uint32(0xFFFF),
0016     
0017     # number of Bx per board in the DAQ record
0018     DaqNrBxBoard = cms.vint32(3,
0019                               3, 3, 3, 3, 3, 3, 3,
0020                               3),
0021 
0022     # number of Bx per board in the EVM record
0023     EvmNrBxBoard = cms.vint32(1, 3),
0024     
0025     # length of BST record (in bytes) for L1 GT EVM record
0026     BstLengthBytes = cms.uint32(30)
0027     
0028     
0029 )
0030 
0031