1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
import FWCore.ParameterSet.Config as cms
# output block for alcastream HCAL Min Bias
# output module
# module alcastreamHcalMinbiasOutput = PoolOutputModule
OutALCARECOHcalCalMinBiasHI_noDrop = cms.PSet(
SelectEvents = cms.untracked.PSet(
SelectEvents = cms.vstring('pathALCARECOHcalCalMinBias')
),
outputCommands = cms.untracked.vstring(
'keep *_hltTriggerSummaryAOD_*_*',
'keep *_TriggerResults_*_*',
'keep HcalNoiseSummary_hcalnoise_*_*',
'keep HBHERecHitsSorted_hbhereco_*_*',
'keep HORecHitsSorted_horeco_*_*',
'keep HFRecHitsSorted_hfreco_*_*',
'keep HFRecHitsSorted_hfrecoMBNZS_*_*',
'keep HBHERecHitsSorted_hbherecoNoise_*_*',
'keep HORecHitsSorted_horecoNoise_*_*',
'keep HFRecHitsSorted_hfrecoNoise_*_*')
)
import copy
OutALCARECOHcalCalMinBiasHI=copy.deepcopy(OutALCARECOHcalCalMinBiasHI_noDrop)
OutALCARECOHcalCalMinBiasHI.outputCommands.insert(0, "drop *")
|