CMS 3D CMS Logo

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