1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
import FWCore.ParameterSet.Config as cms
# output block for alcastream HCAL Iterative Phi Syms
# output module
# module alcastreamHcalCalIterativePhiSymOutput = PoolOutputModule
OutALCARECOHcalCalIterativePhiSym_noDrop = cms.PSet(
SelectEvents = cms.untracked.PSet(
SelectEvents = cms.vstring('pathALCARECOHcalCalIterativePhiSym')
),
outputCommands = cms.untracked.vstring(
"keep *_horeco_*_*",
"keep *_hfreco_*_*",
"keep *_hbhereco_*_*",
"keep *_offlinePrimaryVertices_*_*",
'keep HcalNoiseSummary_hcalnoise_*_*',
"keep *_scalersRawToDigi_*_*",
"keep edmTriggerResults_*_*_HLT")
)
import copy
OutALCARECOHcalCalIterativePhiSym=copy.deepcopy(OutALCARECOHcalCalIterativePhiSym_noDrop)
OutALCARECOHcalCalIterativePhiSym.outputCommands.insert(0, "drop *")
|