Skip to content

Commit 58da440

Browse files
committed
Merge pull request cms-sw#2665 from deguio/fixDQMTests
DQM Fixes -- Fix dqm tests
2 parents 4ed9150 + f9678f6 commit 58da440

24 files changed

+4107
-39
lines changed

DQMServices/Components/python/test/customDQM.py

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ def customise(process):
1414
wantSummary = cms.untracked.bool(True)
1515
)
1616

17+
#using the DQMROOT means that the reco output will be empty
1718
process.DQMoutput.outputCommands.append('drop *')
1819
process.DQMoutput.outputCommands.append('keep *_MEtoEDMConverter_*_*')
1920

DQMServices/Components/python/test/customFEVTDEBUGHLT.py

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ def customise(process):
1414
wantSummary = cms.untracked.bool(True)
1515
)
1616

17+
#using the DQMROOT means that the fevt output will be empty
1718
process.FEVTDEBUGHLToutput.outputCommands.append('drop *')
1819
process.FEVTDEBUGHLToutput.outputCommands.append('keep *_MEtoEDMConverter_*_*')
1920

DQMServices/Components/python/test/customReco.py

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ def customise(process):
1414
wantSummary = cms.untracked.bool(True)
1515
)
1616

17+
#using the DQMROOT means that the reco output will be empty
1718
process.RECOoutput.outputCommands.append('drop *')
1819
process.RECOoutput.outputCommands.append('keep *_MEtoEDMConverter_*_*')
1920

DQMServices/Components/python/test/customRecoSim.py

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ def customise(process):
1414
wantSummary = cms.untracked.bool(True)
1515
)
1616

17+
#using the DQMROOT means that the recosim output will be empty
1718
process.RECOSIMoutput.outputCommands.append('drop *')
1819
process.RECOSIMoutput.outputCommands.append('keep *_MEtoEDMConverter_*_*')
1920

0 commit comments

Comments
 (0)