Skip to content

Commit

Permalink
Merge pull request #10190 from davidlange6/hotline_74x_v2
Browse files Browse the repository at this point in the history
remove printout and add _nodrop to hotline
  • Loading branch information
davidlange6 committed Jul 14, 2015
2 parents 1a35af4 + 65d6126 commit 298e9fa
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Calibration/Hotline/python/hotlineSkims_Output_cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

from Configuration.EventContent.EventContent_cff import FEVTEventContent

OutALCARECOHotline = cms.PSet(
OutALCARECOHotline_noDrop = cms.PSet(
SelectEvents = cms.untracked.PSet(
SelectEvents = cms.vstring(
"pathHotlineSkimSingleMuon",
Expand All @@ -30,4 +30,8 @@
outputCommands = copy.deepcopy(FEVTEventContent.outputCommands)
)

while 'drop *' in OutALCARECOHotline.outputCommands: OutALCARECOHotline.outputCommands.remove('drop *')
while 'drop *' in OutALCARECOHotline_noDrop.outputCommands: OutALCARECOHotline_noDrop.outputCommands.remove('drop *')

import copy
OutALCARECOHotline = copy.deepcopy(OutALCARECOHotline_noDrop)
OutALCARECOHotline.outputCommands.insert(0, "drop *")

0 comments on commit 298e9fa

Please sign in to comment.