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  "keep *_horeco_*_*",
13  "keep *_hfreco_*_*",
14  "keep *_hbhereco_*_*",
15  "keep *_offlinePrimaryVertices_*_*",
16  'keep HcalNoiseSummary_hcalnoise_*_*',
17  "keep *_scalersRawToDigi_*_*",
18  "keep edmTriggerResults_*_*_HLT")
19 
20 )
21 
22 import copy
23 OutALCARECOHcalCalIterativePhiSym=copy.deepcopy(OutALCARECOHcalCalIterativePhiSym_noDrop)
24 OutALCARECOHcalCalIterativePhiSym.outputCommands.insert(0, "drop *")