Skip to content

Commit

Permalink
Fixing BeamMonitor_HLT client
Browse files Browse the repository at this point in the history
  • Loading branch information
dzuolo committed Apr 20, 2022
1 parent 511e10a commit 691485e
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,19 @@
from DQM.Integration.config.online_customizations_cfi import *
process = customise(process)

# Digitisation: produce the TCDS digis containing BST record
from EventFilter.OnlineMetaDataRawToDigi.tcdsRawToDigi_cfi import *
process.tcdsDigis = tcdsRawToDigi.clone()

#------------------------
# Set rawDataRepacker (HI and live) or rawDataCollector (for all the rest)
if (process.runType.getRunType() == process.runType.hi_run and live):
rawDataInputTag = "rawDataRepacker"
else:
rawDataInputTag = "rawDataCollector"

process.tcdsDigis.InputLabel = rawDataInputTag

#-----------------------------------------------------------
# Swap offline <-> online BeamSpot as in Express and HLT
import RecoVertex.BeamSpotProducer.onlineBeamSpotESProducer_cfi as _mod
Expand Down Expand Up @@ -226,6 +239,7 @@
print("Configured frontierKey", options.runUniqueKey)

process.p = cms.Path( process.hltTriggerTypeFilter
* process.tcdsDigis
* process.dqmcommon
* process.offlineBeamSpot
* process.monitor )
Expand Down

0 comments on commit 691485e

Please sign in to comment.