Skip to content

remove L1T legacy dependencies from pixel and strip online DQM clients #47508

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
elif(offlineTesting):
process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff')
from Configuration.AlCa.GlobalTag import GlobalTag as gtCustomise
process.GlobalTag = gtCustomise(process.GlobalTag, 'auto:run3_data', '')
process.GlobalTag = gtCustomise(process.GlobalTag, 'auto:hltonline', '')

#-----------------------
# Reconstruction Modules
Expand Down Expand Up @@ -180,6 +180,13 @@

process.RecoForDQM_LocalReco = cms.Sequence(process.siPixelDigis*process.siStripDigis*process.gtDigis*process.trackerlocalreco)

from Configuration.Eras.Modifier_stage2L1Trigger_cff import stage2L1Trigger
# Replace gtDigis with gtStage2Digis when stage2L1Trigger is active
stage2L1Trigger.toReplaceWith(
process.RecoForDQM_LocalReco,
cms.Sequence(process.siPixelDigis * process.siStripDigis * process.gtStage2Digis * process.trackerlocalreco)
)

### COSMIC RUN SETTING
if (process.runType.getRunType() == process.runType.cosmic_run or process.runType.getRunType() == process.runType.cosmic_run_stage1):

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff')
from Configuration.AlCa.GlobalTag import GlobalTag as gtCustomise
#you may need to set manually the GT in the line below
process.GlobalTag = gtCustomise(process.GlobalTag, 'auto:run3_data', '')
process.GlobalTag = gtCustomise(process.GlobalTag, 'auto:hltonline', '')

#--------------------------------------------
## Patch to avoid using Run Info information in reconstruction
Expand Down Expand Up @@ -232,6 +232,13 @@
process.RecoForDQM_LocalReco = cms.Sequence(process.siPixelDigis*process.siStripDigis*process.trackerlocalreco)
else :
process.RecoForDQM_LocalReco = cms.Sequence(process.siPixelDigis*process.siStripDigis*process.gtDigis*process.trackerlocalreco)

from Configuration.Eras.Modifier_stage2L1Trigger_cff import stage2L1Trigger
# Replace gtDigis with gtStage2Digis when stage2L1Trigger is active
stage2L1Trigger.toReplaceWith(
process.RecoForDQM_LocalReco,
cms.Sequence(process.siPixelDigis * process.siStripDigis * process.gtStage2Digis * process.trackerlocalreco)
)
#------------------------------------------------------
# Switch for channel errors per FED ID trend plots.
#------------------------------------------------------
Expand Down Expand Up @@ -516,6 +523,7 @@
process.ecalPreshowerDigis.sourceTag = rawDataCollectorLabel
process.gctDigis.inputLabel = rawDataCollectorLabel
process.gtDigis.DaqGtInputTag = rawDataCollectorLabel
process.gtStage2Digis.InputLabel = rawDataCollectorLabel
process.hcalDigis.InputLabel = rawDataCollectorLabel
process.muonCSCDigis.InputObjects = rawDataCollectorLabel
process.muonDTDigis.inputLabel = rawDataCollectorLabel
Expand Down