Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:58:47

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # output block for alcastream HCAL Noise
0004 
0005 OutALCARECOHcalCalNoise_noDrop = cms.PSet(
0006     # use this in case of filter available
0007     SelectEvents = cms.untracked.PSet(
0008         SelectEvents = cms.vstring('pathALCARECOHcalCalNoise')
0009     ),
0010     outputCommands = cms.untracked.vstring(
0011         'keep *_HcalNoiseProd_*_*',
0012         'keep HcalNoiseSummary_hcalnoise_*_*',
0013     'keep edmTriggerResults_*_*_HLT'
0014 )
0015 )
0016 
0017 
0018 import copy
0019 OutALCARECOHcalCalNoise=copy.deepcopy(OutALCARECOHcalCalNoise_noDrop)
0020 OutALCARECOHcalCalNoise.outputCommands.insert(0, "drop *")