Skip to content

Commit

Permalink
Merge pull request #20195 from stahlleiton/OnlineDQM_L1TCosmic_92X
Browse files Browse the repository at this point in the history
[92X] OnlineDQM : Customize L1T Client for cosmic run
  • Loading branch information
cmsbuild committed Aug 23, 2017
2 parents fee39c1 + c98a880 commit 4e05d09
Showing 1 changed file with 16 additions and 0 deletions.
Expand Up @@ -84,6 +84,22 @@
#process.load("DQM.L1TMonitor.L1TMonitor_cff")
#process.l1tMonitorEndPath = cms.EndPath(process.l1tMonitorEndPathSeq)

#--------------------------------------------------
# Customize for other type of runs

# Cosmic run
if (process.runType.getRunType() == process.runType.cosmic_run):
process.DQMStore.referenceFileName = "/dqmdata/dqm/reference/l1t_reference_cosmic.root"
# Remove Quality Tests for L1T Muon Subsystems since they are not optimized yet for cosmics
process.l1tStage2MonitorClient.remove(process.l1TStage2uGMTQualityTests)
process.l1tStage2MonitorClient.remove(process.l1TStage2EMTFQualityTests)
process.l1tStage2MonitorClient.remove(process.l1TStage2BMTFQualityTests)
process.l1tStage2EventInfoClient.DisableL1Systems = cms.vstring("EMTF", "OMTF", "BMTF", "uGMT")

# Heavy-Ion run
if (process.runType.getRunType() == process.runType.hi_run):
process.DQMStore.referenceFileName = "/dqmdata/dqm/reference/l1t_reference_hi.root"

#--------------------------------------------------
# L1T Online DQM Schedule

Expand Down

0 comments on commit 4e05d09

Please sign in to comment.