-
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 #35739 from jshlee/gem-validation-CMSSW_12_1_0_pre3
GEM - adding selected online dqm plots to offline dqm for data relval
- Loading branch information
Showing
4 changed files
with
26 additions
and
3 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,7 +1,10 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
from DQM.GEM.GEMDQMHarvester_cfi import * | ||
from DQMOffline.Muon.gemEfficiencyHarvester_cfi import * | ||
|
||
gemClients = cms.Sequence( | ||
GEMDQMHarvester * | ||
gemEfficiencyHarvesterTightGlb * | ||
gemEfficiencyHarvesterSta) | ||
gemEfficiencyHarvesterSta | ||
) |
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 |
---|---|---|
@@ -1,7 +1,10 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
from DQM.GEM.GEMDQMHarvester_cfi import * | ||
from DQMOffline.Muon.gemEfficiencyHarvesterCosmics_cfi import * | ||
|
||
gemClientsCosmics = cms.Sequence( | ||
GEMDQMHarvester * | ||
gemEfficiencyHarvesterCosmics * | ||
gemEfficiencyHarvesterCosmicsOneLeg) | ||
gemEfficiencyHarvesterCosmicsOneLeg | ||
) |
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 |
---|---|---|
@@ -1,8 +1,16 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
from DQM.GEM.GEMDigiSource_cfi import * | ||
from DQM.GEM.GEMRecHitSource_cfi import * | ||
|
||
from DQMOffline.Muon.gemEfficiencyAnalyzer_cfi import * | ||
|
||
GEMDigiSource.modeRelVal = True | ||
GEMRecHitSource.modeRelVal = True | ||
|
||
gemSources = cms.Sequence( | ||
GEMDigiSource * | ||
GEMRecHitSource * | ||
gemEfficiencyAnalyzerTightGlbSeq * | ||
gemEfficiencyAnalyzerStaSeq | ||
) |
11 changes: 10 additions & 1 deletion
11
DQMOffline/Muon/python/gem_dqm_offline_source_cosmics_cff.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 |
---|---|---|
@@ -1,7 +1,16 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
from DQM.GEM.GEMDigiSource_cfi import * | ||
from DQM.GEM.GEMRecHitSource_cfi import * | ||
|
||
from DQMOffline.Muon.gemEfficiencyAnalyzerCosmics_cfi import * | ||
|
||
GEMDigiSource.modeRelVal = True | ||
GEMRecHitSource.modeRelVal = True | ||
|
||
gemSourcesCosmics = cms.Sequence( | ||
GEMDigiSource * | ||
GEMRecHitSource * | ||
gemEfficiencyAnalyzerCosmics * | ||
gemEfficiencyAnalyzerCosmicsOneLeg) | ||
gemEfficiencyAnalyzerCosmicsOneLeg | ||
) |