-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37147 from CTPPS/PPS_xml_run3
XML and FedId configuration update for PPS
- Loading branch information
Showing
7 changed files
with
1,160 additions
and
12 deletions.
There are no files selected for viewing
249 changes: 249 additions & 0 deletions
249
CondFormats/PPSObjects/xml/mapping_timing_diamond_2022.xml
Large diffs are not rendered by default.
Oops, something went wrong.
321 changes: 321 additions & 0 deletions
321
CondFormats/PPSObjects/xml/mapping_totem_timing_2022.xml
Large diffs are not rendered by default.
Oops, something went wrong.
534 changes: 534 additions & 0 deletions
534
CondFormats/PPSObjects/xml/mapping_tracking_strip_2022.xml
Large diffs are not rendered by default.
Oops, something went wrong.
17 changes: 13 additions & 4 deletions
17
EventFilter/CTPPSRawToDigi/python/ctppsDiamondRawToDigi_cfi.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,20 @@ | ||
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 EventFilter.CTPPSRawToDigi.totemVFATRawToDigi_cfi import totemVFATRawToDigi | ||
|
||
ctppsDiamondRawToDigi = totemVFATRawToDigi.clone( | ||
subSystem = cms.string('TimingDiamond'), | ||
RawToDigi = totemVFATRawToDigi.RawToDigi.clone( | ||
testCRC = cms.uint32(0), # no need to test CRC for diamond frames | ||
testECMostFrequent = cms.uint32(0) # show error in the DQM and then DAQ is sending resync, no need to test in the unpacker | ||
subSystem = 'TimingDiamond', | ||
fedIds = [579, 581, 582, 583], #as declared in DataFormats/FEDRawData/interface/FEDNumbering.h | ||
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 | ||
(ctpps_2016 | ctpps_2017 | ctpps_2018).toModify(ctppsDiamondRawToDigi, | ||
fedIds = [] ) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,16 @@ | ||
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 EventFilter.CTPPSRawToDigi.totemVFATRawToDigi_cfi import totemVFATRawToDigi | ||
|
||
totemRPRawToDigi = totemVFATRawToDigi.clone( | ||
subSystem = cms.string('TrackingStrip') | ||
subSystem = 'TrackingStrip', | ||
fedIds = [578, 580, 584, 585] #as declared in DataFormats/FEDRawData/interface/FEDNumbering.h | ||
) | ||
|
||
# for Run 2 backward compatibility | ||
(ctpps_2016 | ctpps_2017 | ctpps_2018).toModify(totemRPRawToDigi, | ||
fedIds = [] ) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters