Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:10:30

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from Configuration.Eras.Modifier_ctpps_2016_cff import ctpps_2016
0004 from Configuration.Eras.Modifier_ctpps_2017_cff import ctpps_2017
0005 from Configuration.Eras.Modifier_ctpps_2018_cff import ctpps_2018
0006 
0007 from EventFilter.CTPPSRawToDigi.totemVFATRawToDigi_cfi import totemVFATRawToDigi
0008 
0009 totemTimingRawToDigi = totemVFATRawToDigi.clone(
0010     subSystem = 'TotemTiming',
0011     
0012     fedIds = [586, 587],  #as declared in DataFormats/FEDRawData/interface/FEDNumbering.h
0013     
0014     RawToDigi = dict(
0015         verbosity = 0,
0016 
0017         # disable all the checks
0018         testFootprint = 0,
0019         testCRC = 0,
0020         testID = 0,               # compare the ID from data and mapping
0021         testECMostFrequent = 0,   # compare frame's EC with the most frequent value in the event
0022         testBCMostFrequent = 0,   # compare frame's BC with the most frequent value in the event
0023 
0024         # tracked parameter for Totem T2
0025         useOlderT2TestFile = False,
0026 
0027         # if true, prints a per-VFAT error summary at the end of the job
0028         printErrorSummary = False,
0029     
0030         # if true, prints a summary of frames found in data, but not in the mapping
0031         printUnknownFrameSummary = False
0032     )
0033 )
0034 
0035 # for Run 2 backward compatibility
0036 (ctpps_2016 | ctpps_2017 | ctpps_2018).toModify(totemTimingRawToDigi,
0037 fedIds = [] )