CMS 3D CMS Logo

ALCARECOHcalCalNoise_Output_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # output block for alcastream HCAL Noise
4 
5 OutALCARECOHcalCalNoise_noDrop = cms.PSet(
6  # use this in case of filter available
7  SelectEvents = cms.untracked.PSet(
8  SelectEvents = cms.vstring('pathALCARECOHcalCalNoise')
9  ),
10  outputCommands = cms.untracked.vstring(
11  'keep *_HcalNoiseProd_*_*',
12  'keep HcalNoiseSummary_hcalnoise_*_*',
13  'keep edmTriggerResults_*_*_HLT'
14 )
15 )
16 
17 
18 import copy
19 OutALCARECOHcalCalNoise=copy.deepcopy(OutALCARECOHcalCalNoise_noDrop)
20 OutALCARECOHcalCalNoise.outputCommands.insert(0, "drop *")