Skip to content
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

ECAL online DQM timing conditions tag override - 132x - do not merge #42855

Closed
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
15 changes: 15 additions & 0 deletions DQM/Integration/python/clients/ecal_dqm_sourceclient-live_cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,21 @@
#process.load("Configuration.StandardSequences.FrontierConditions_GlobalTag_cff")
#process.load("CalibCalorimetry.EcalLaserCorrection.ecalLaserCorrectionService_cfi")

# Temporary override the tag for ECAL timing calibrations and timing offsets so that the online DQM uses the conditions for CC timing.
# Should be removed once the HLT GTs contain both, the reco and HLT conditions.
process.GlobalTag.toGet = cms.VPSet(
cms.PSet(record = cms.string("EcalTimeCalibConstantsRcd"),
tag = cms.string("EcalTimeCalibConstants_v01_prompt"),
label = cms.untracked.string(''),
connect = cms.string("frontier://FrontierProd/CMS_CONDITIONS")
),
cms.PSet(record = cms.string("EcalTimeOffsetConstantRcd"),
tag = cms.string("EcalTimeOffsetConstant_v01_express"),
label = cms.untracked.string(''),
connect = cms.string("frontier://FrontierProd/CMS_CONDITIONS")
)
)

process.load("FWCore.Modules.preScaler_cfi")
process.load("Configuration.StandardSequences.GeometryRecoDB_cff")
#process.load("Geometry.CaloEventSetup.CaloGeometry_cfi")
Expand Down