CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/Calibration/HcalAlCaRecoProducers/python/ALCARECOHcalCalNoise_Output_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # output block for alcastream HCAL Noise
00004 
00005 OutALCARECOHcalCalNoise_noDrop = cms.PSet(
00006     # use this in case of filter available
00007     SelectEvents = cms.untracked.PSet(
00008         SelectEvents = cms.vstring('pathALCARECOHcalCalNoise')
00009     ),
00010     outputCommands = cms.untracked.vstring(
00011         'keep *_HcalNoiseProd_*_*',
00012         'keep edmTriggerResults_*_*_HLT'
00013 )
00014 )
00015 
00016 
00017 import copy
00018 OutALCARECOHcalCalNoise=copy.deepcopy(OutALCARECOHcalCalNoise_noDrop)
00019 OutALCARECOHcalCalNoise.outputCommands.insert(0, "drop *")