-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11013 from sachikot/scal_onlinedqm_75X
adding more scal monitoring for online DQM in 75X
- Loading branch information
Showing
3 changed files
with
149 additions
and
0 deletions.
There are no files selected for viewing
94 changes: 94 additions & 0 deletions
94
DQM/Integration/python/clients/scal_dqm_sourceclient-live_cfg.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
process = cms.Process("DQM") | ||
|
||
#---------------------------- | ||
#### Event Source | ||
#---------------------------- | ||
# for live online DQM in P5 | ||
process.load("DQM.Integration.config.inputsource_cfi") | ||
|
||
# for testing in lxplus | ||
#process.load("DQM.Integration.config.fileinputsource_cfi") | ||
|
||
#---------------------------- | ||
#### DQM Environment | ||
#---------------------------- | ||
process.load("DQM.Integration.config.environment_cfi") | ||
process.dqmEnv.subSystemFolder = 'Scal' | ||
process.dqmSaver.tag = 'Scal' | ||
#----------------------------- | ||
process.load("DQMServices.Components.DQMScalInfo_cfi") | ||
|
||
# message logger | ||
process.MessageLogger = cms.Service("MessageLogger", | ||
destinations = cms.untracked.vstring('cout'), | ||
cout = cms.untracked.PSet(threshold = cms.untracked.string('WARNING')) | ||
) | ||
|
||
# Global tag | ||
# Condition for P5 cluster | ||
process.load("DQM.Integration.config.FrontierCondition_GT_cfi") | ||
process.load("EventFilter.L1GlobalTriggerRawToDigi.l1GtUnpack_cfi") | ||
process.load("EventFilter.L1GlobalTriggerRawToDigi.l1GtEvmUnpack_cfi") | ||
process.load("EventFilter.L1GlobalTriggerRawToDigi.l1GtRecord_cfi") | ||
|
||
import EventFilter.L1GlobalTriggerRawToDigi.l1GtUnpack_cfi | ||
gtDigis = EventFilter.L1GlobalTriggerRawToDigi.l1GtUnpack_cfi.l1GtUnpack.clone() | ||
import EventFilter.L1GlobalTriggerRawToDigi.l1GtEvmUnpack_cfi | ||
gtEvmDigis = EventFilter.L1GlobalTriggerRawToDigi.l1GtEvmUnpack_cfi.l1GtEvmUnpack.clone() | ||
|
||
if (process.runType.getRunType() == process.runType.pp_run): | ||
process.source.SelectEvents = cms.untracked.vstring('HLT_ZeroBias*') | ||
|
||
process.physicsBitSelector = cms.EDFilter("PhysDecl", | ||
applyfilter = cms.untracked.bool(False), | ||
debugOn = cms.untracked.bool(False), | ||
HLTriggerResults = cms.InputTag("TriggerResults","","HLT") | ||
) | ||
|
||
|
||
process.load("EventFilter.ScalersRawToDigi.ScalersRawToDigi_cfi") | ||
|
||
## Collision Reconstruction | ||
process.load("Configuration.StandardSequences.RawToDigi_Data_cff") | ||
#process.load("Configuration.StandardSequences.Reconstruction_cff") | ||
|
||
#----------------------------- | ||
#### Sub-system configuration follows | ||
process.dump = cms.EDAnalyzer('EventContentAnalyzer') | ||
|
||
# DQM Modules | ||
process.dqmmodules = cms.Sequence(process.dqmEnv + process.dqmSaver) | ||
process.evfDQMmodulesPath = cms.Path( | ||
process.l1GtUnpack* | ||
process.gtDigis* | ||
process.l1GtRecord* | ||
process.physicsBitSelector* | ||
process.scalersRawToDigi* | ||
process.dqmscalInfo* | ||
process.dqmmodules | ||
) | ||
process.schedule = cms.Schedule(process.evfDQMmodulesPath) | ||
|
||
if (process.runType.getRunType() == process.runType.hi_run): | ||
process.castorDigis.InputLabel = cms.InputTag("rawDataRepacker") | ||
process.csctfDigis.producer = cms.InputTag("rawDataRepacker") | ||
process.dttfDigis.DTTF_FED_Source = cms.InputTag("rawDataRepacker") | ||
process.ecalDigis.InputLabel = cms.InputTag("rawDataRepacker") | ||
process.ecalPreshowerDigis.sourceTag = cms.InputTag("rawDataRepacker") | ||
process.gctDigis.inputLabel = cms.InputTag("rawDataRepacker") | ||
process.gtDigis.DaqGtInputTag = cms.InputTag("rawDataRepacker") | ||
process.gtEvmDigis.EvmGtInputTag = cms.InputTag("rawDataRepacker") | ||
process.hcalDigis.InputLabel = cms.InputTag("rawDataRepacker") | ||
process.muonCSCDigis.InputObjects = cms.InputTag("rawDataRepacker") | ||
process.muonDTDigis.inputLabel = cms.InputTag("rawDataRepacker") | ||
process.muonRPCDigis.InputLabel = cms.InputTag("rawDataRepacker") | ||
process.scalersRawToDigi.scalersInputTag = cms.InputTag("rawDataRepacker") | ||
process.siPixelDigis.InputLabel = cms.InputTag("rawDataRepacker") | ||
process.siStripDigis.ProductLabel = cms.InputTag("rawDataRepacker") | ||
|
||
|
||
### process customizations included here | ||
from DQM.Integration.config.online_customizations_cfi import * | ||
process = customise(process) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters