CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_1_8_patch9/src/L1TriggerConfig/L1GtConfigProducers/python/l1GtParameters_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 #
00004 l1GtParameters = cms.ESProducer("L1GtParametersTrivialProducer",
00005     
00006     # number of bunch crossing in the GT readout record: 3 bx (standard), 5 bx (debug)
00007     TotalBxInEvent = cms.int32(3),
00008 
00009     # list of active boards for L1 GT DAQ record (actually 16 bits)
00010     # default: all active 0xFFFF
00011     DaqActiveBoards = cms.uint32(0xFFFF),
00012     
00013     # list of active boards for L1 GT EVM record (actually 16 bits)
00014     # default: all active 0xFFFF
00015     EvmActiveBoards = cms.uint32(0xFFFF),
00016     
00017     # number of Bx per board in the DAQ record
00018     DaqNrBxBoard = cms.vint32(3,
00019                               3, 3, 3, 3, 3, 3, 3,
00020                               3),
00021 
00022     # number of Bx per board in the EVM record
00023     EvmNrBxBoard = cms.vint32(1, 3),
00024     
00025     # length of BST record (in bytes) for L1 GT EVM record
00026     BstLengthBytes = cms.uint32(30)
00027     
00028     
00029 )
00030 
00031