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