CMS 3D CMS Logo

ctppsDiamondRawToDigi_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from EventFilter.CTPPSRawToDigi.totemVFATRawToDigi_cfi import totemVFATRawToDigi
4 
5 ctppsDiamondRawToDigi = totemVFATRawToDigi.clone(
6  subSystem = cms.string('TimingDiamond'),
7  RawToDigi = totemVFATRawToDigi.RawToDigi.clone(
8  testCRC = cms.uint32(0), # no need to test CRC for diamond frames
9  testECMostFrequent = cms.uint32(0) # show error in the DQM and then DAQ is sending resync, no need to test in the unpacker
10  )
11 )