CMS 3D CMS Logo

ALCARECOHcalCalPedestal_Output_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # output block for alcastream HCAL Pedestal
4 # output module
5 # module alcastreamHcalMinbiasOutput = PoolOutputModule
6 
7 OutALCARECOHcalCalPedestal_noDrop = cms.PSet(
8  SelectEvents = cms.untracked.PSet(
9  SelectEvents = cms.vstring('pathALCARECOHcalCalPedestal')
10  ),
11  outputCommands = cms.untracked.vstring(
12  'keep *_gtDigisAlCaPedestal_*_*',
13  'keep HBHERecHitsSorted_hbherecoPedestal_*_*',
14  'keep HORecHitsSorted_horecoPedestal_*_*',
15  'keep HFRecHitsSorted_hfrecoPedestal_*_*')
16 )
17 
18 import copy
19 OutALCARECOHcalCalPedestal=copy.deepcopy(OutALCARECOHcalCalPedestal_noDrop)
20 OutALCARECOHcalCalPedestal.outputCommands.insert(0, "drop *")