00001 # 00002 # cfi file for a module to produce raw GT DAQ starting from a text (ASCII) file 00003 # 00004 00005 import FWCore.ParameterSet.Config as cms 00006 00007 L1GtTextToRaw = cms.EDProducer("L1GtTextToRaw", 00008 00009 # type of the text file 00010 TextFileType = cms.untracked.string('VmeSpyDump'), 00011 00012 # name of the text file to be packed 00013 # the module is using a EmptySource source 00014 TextFileName = cms.untracked.string('testGt_TextToRaw_source.txt'), 00015 00016 # FED Id for GT DAQ record 00017 # default value defined in DataFormats/FEDRawData/src/FEDNumbering.cc 00018 DaqGtFedId = cms.untracked.int32(813), 00019 00020 # FED raw data size (in 8bits units, including header and trailer) 00021 # If negative value, the size is retrieved from the trailer. 00022 RawDataSize = cms.untracked.int32(872) 00023 ) 00024 00025