Skip to content

Commit a39394f

Browse files
authored
Merge pull request cms-sw#33970 from dildick/from-CMSSW_12_0_X_2021-06-03-1100-gem-validation-bugfix
GE2/1 digi and rechit validation plots only in phase2 eras
2 parents a4ad6fa + 14bf05a commit a39394f

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

Validation/MuonGEMDigis/python/PostProcessor_cff.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@
55
gemDigiHarvesting = DQMEDHarvester("MuonGEMDigisHarvestor",
66
GEMValidationCommonParameters,
77
regionIds = cms.untracked.vint32(-1, 1),
8-
stationIds = cms.untracked.vint32(1, 2),
8+
stationIds = cms.untracked.vint32(1),
99
layerIds = cms.untracked.vint32(1, 2, 3, 4, 5, 6),
1010
)
11+
1112
MuonGEMDigisPostProcessors = cms.Sequence(gemDigiHarvesting)
13+
14+
from Configuration.Eras.Modifier_phase2_common_cff import phase2_common
15+
phase2_common.toModify( gemDigiHarvesting, stationIds = (1, 2) )

Validation/MuonGEMRecHits/python/PostProcessor_cff.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@
55
gemRecHitHarvesting = DQMEDHarvester("MuonGEMRecHitsHarvestor",
66
GEMValidationCommonParameters,
77
regionIds = cms.untracked.vint32(-1, 1),
8-
stationIds = cms.untracked.vint32(1, 2),
8+
stationIds = cms.untracked.vint32(1),
99
layerIds = cms.untracked.vint32(1, 2, 3, 4, 5, 6),
1010
)
1111

12+
MuonGEMRecHitsPostProcessors = cms.Sequence( gemRecHitHarvesting )
1213

13-
MuonGEMRecHitsPostProcessors = cms.Sequence( gemRecHitHarvesting )
14+
from Configuration.Eras.Modifier_phase2_common_cff import phase2_common
15+
phase2_common.toModify( gemRecHitHarvesting, stationIds = (1, 2) )

0 commit comments

Comments
 (0)