-
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 #31818 from seungjin-yang/GEM-Offline-DQM-Sequence…
…-from-CMSSW_11_2_0_pre7 Update GEM offline DQM sequences
- Loading branch information
Showing
12 changed files
with
67 additions
and
24 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
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
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
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
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,18 +1,13 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
from DQMServices.Core.DQMEDHarvester import DQMEDHarvester | ||
|
||
from DQMServices.Core.DQMEDHarvester import DQMEDHarvester | ||
|
||
gemEfficiencyHarvesterTight = DQMEDHarvester('GEMEfficiencyHarvester', | ||
folder = cms.untracked.string('GEM/GEMEfficiency/TightGlobalMuon'), | ||
logCategory = cms.untracked.string('GEMEfficiencyHarvesterTight') | ||
) | ||
|
||
|
||
gemEfficiencyHarvesterSTA = DQMEDHarvester('GEMEfficiencyHarvester', | ||
folder = cms.untracked.string('GEM/GEMEfficiency/StandaloneMuon'), | ||
logCategory = cms.untracked.string('GEMEfficiencyHarvesterSTA') | ||
) | ||
|
||
|
||
gemEfficiencyHarvesterSeq = cms.Sequence(gemEfficiencyHarvesterTight * | ||
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
from DQMOffline.Muon.gemEfficiencyHarvester_cfi import * | ||
|
||
gemClients = cms.Sequence( | ||
gemEfficiencyHarvesterTight * | ||
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
from DQMOffline.Muon.gemOfflineMonitor_cfi import * | ||
from DQMOffline.Muon.gemEfficiencyAnalyzer_cfi import * | ||
|
||
gemSources = cms.Sequence( | ||
gemOfflineMonitor * | ||
gemEfficiencyAnalyzerTightSeq * | ||
gemEfficiencyAnalyzerSTASeq) |
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