CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
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 *_hltTriggerSummaryAOD_*_*',
13  'keep *_TriggerResults_*_*',
14  'keep HcalNoiseSummary_hcalnoise_*_*',
15  'keep HBHERecHitsSorted_hbherecoPedestal_*_*',
16  'keep HORecHitsSorted_horecoPedestal_*_*',
17  'keep HFRecHitsSorted_hfrecoPedestal_*_*')
18 )
19 
20 import copy
21 OutALCARECOHcalCalPedestal=copy.deepcopy(OutALCARECOHcalCalPedestal_noDrop)
22 OutALCARECOHcalCalPedestal.outputCommands.insert(0, "drop *")