Skip to content

Commit

Permalink
correcting valOmtfDigis in the L1TStage2Emulator_cff.py
Browse files Browse the repository at this point in the history
in the L1Trigger/L1TMuonOverlapPhase1/python/simOmtfDigis_cfi.py: adding
bxMin and bxMx as cms.int32 (with defoult values i.e. 0)

in the DQM/L1TMonitor/python/L1TStage2Emulator_cff.py
not using cms.int32 for simOmtfDigis.bxMin and bxMax, but ordinary
numbers
  • Loading branch information
Karol Bunkowski committed Sep 24, 2021
1 parent a8d4e08 commit b8d8a96
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions DQM/L1TMonitor/python/L1TStage2Emulator_cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@
srcDTTh = "omtfStage2Digis",
srcCSC = "omtfStage2Digis",
srcRPC = "omtfStage2Digis",
bxMin = cms.int32(-3),
bxMax = cms.int32(4)
bxMin = -3,
bxMax = 4
)

# GEM TPG
Expand Down
4 changes: 2 additions & 2 deletions L1Trigger/L1TMuonOverlapPhase1/python/simOmtfDigis_cfi.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

#if commented the default values are 0-0
#-3 to 4 is the range of the OMTF DAQ readout, so should be used e.g. in the DQM data to emulator comparison
#bxMin = cms.int32(-3),
#bxMax = cms.int32(4)
bxMin = cms.int32(0),
bxMax = cms.int32(0)
)

0 comments on commit b8d8a96

Please sign in to comment.