CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
l1GtParameters_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #
4 l1GtParameters = cms.ESProducer("L1GtParametersTrivialProducer",
5 
6  # number of bunch crossing in the GT readout record: 3 bx (standard), 5 bx (debug)
7  TotalBxInEvent = cms.int32(3),
8 
9  # list of active boards for L1 GT DAQ record (actually 16 bits)
10  # default: all active 0xFFFF
11  DaqActiveBoards = cms.uint32(0xFFFF),
12 
13  # list of active boards for L1 GT EVM record (actually 16 bits)
14  # default: all active 0xFFFF
15  EvmActiveBoards = cms.uint32(0xFFFF),
16 
17  # number of Bx per board in the DAQ record
18  DaqNrBxBoard = cms.vint32(3,
19  3, 3, 3, 3, 3, 3, 3,
20  3),
21 
22  # number of Bx per board in the EVM record
23  EvmNrBxBoard = cms.vint32(1, 3),
24 
25  # length of BST record (in bytes) for L1 GT EVM record
26  BstLengthBytes = cms.uint32(30)
27 
28 
29 )
30 
31