CMS 3D CMS Logo

totemT2Digis_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 totemT2Digis = totemVFATRawToDigi.clone(
6  subSystem = 'TotemT2',
7  RawToDigi = totemVFATRawToDigi.RawToDigi.clone(
8  testID = 0, #Some ID mismatch in test sample
9  testCRC = 0, # no need to test CRC for diamond frames
10  testECMostFrequent = 0, # show error in the DQM and then DAQ is sending resync, no need to test in the unpacker
11  testBCMostFrequent = 0, # no need to test in the unpacker, footprint test is enough
12  useOlderT2TestFile = False # March '23 version with two 8-bit ID fields
13  )
14 )