1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import FWCore.ParameterSet.Config as cms
from Configuration.Eras.Modifier_ctpps_2016_cff import ctpps_2016
from Configuration.Eras.Modifier_ctpps_2017_cff import ctpps_2017
from Configuration.Eras.Modifier_ctpps_2018_cff import ctpps_2018
from Configuration.Eras.Modifier_ctpps_2022_cff import ctpps_2022
from EventFilter.CTPPSRawToDigi.totemVFATRawToDigi_cfi import totemVFATRawToDigi
# For Run3 we use extended list of FedIDs
ctppsDiamondRawToDigi = totemVFATRawToDigi.clone(
subSystem = 'TimingDiamond',
fedIds = [579, 581, 582, 583, 588, 589],
RawToDigi = dict(
testCRC = 0, # no need to test CRC for diamond frames
testECMostFrequent = 0, # show error in the DQM and then DAQ is sending resync, no need to test in the unpacker
)
)
# for Run 2 backward compatibility
# empty list of fedIds means that the ids will be read from DataFormats/FEDRawData/interface/FEDNumbering.h
(ctpps_2016 | ctpps_2017 | ctpps_2018).toModify(ctppsDiamondRawToDigi, fedIds = [] )
|