CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
l1GtTextToRaw_cfi.py
Go to the documentation of this file.
1 #
2 # cfi file for a module to produce raw GT DAQ starting from a text (ASCII) file
3 #
4 
5 import FWCore.ParameterSet.Config as cms
6 
7 l1GtTextToRaw = cms.EDProducer("L1GtTextToRaw",
8 
9  # type of the text file
10  TextFileType = cms.untracked.string('VmeSpyDump'),
11 
12  # name of the text file to be packed
13  # the module is using a EmptySource source
14  TextFileName = cms.untracked.string('testGt_TextToRaw_source.txt'),
15 
16  # FED Id for GT DAQ record
17  # default value defined in DataFormats/FEDRawData/src/FEDNumbering.cc
18  DaqGtFedId = cms.untracked.int32(813),
19 
20  # FED raw data size (in 8bits units, including header and trailer)
21  # If negative value, the size is retrieved from the trailer.
22  RawDataSize = cms.untracked.int32(872)
23 )
24 
25