CMS 3D CMS Logo

totemTimingRawToDigi_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 totemTimingRawToDigi = totemVFATRawToDigi.clone(
6  subSystem = cms.string('TotemTiming'),
7 
8  # IMPORTANT: leave empty to load the default configuration from
9  # DataFormats/FEDRawData/interface/FEDNumbering.h
10  fedIds = cms.vuint32(),
11 
12  RawToDigi = cms.PSet(
13  verbosity = cms.untracked.uint32(0),
14 
15  # disable all the checks
16  testFootprint = cms.uint32(0),
17  testCRC = cms.uint32(0),
18  testID = cms.uint32(0), # compare the ID from data and mapping
19  testECMostFrequent = cms.uint32(0), # compare frame's EC with the most frequent value in the event
20  testBCMostFrequent = cms.uint32(0), # compare frame's BC with the most frequent value in the event
21 
22  # if non-zero, prints a per-VFAT error summary at the end of the job
23  printErrorSummary = cms.untracked.uint32(0),
24 
25  # if non-zero, prints a summary of frames found in data, but not in the mapping
26  printUnknownFrameSummary = cms.untracked.uint32(0)
27  )
28 )