CMS 3D CMS Logo

ALCARECOHcalCalMinBias_Output_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # output block for alcastream HCAL Min Bias
4 # output module
5 # module alcastreamHcalMinbiasOutput = PoolOutputModule
6 
7 OutALCARECOHcalCalMinBias_noDrop = cms.PSet(
8  SelectEvents = cms.untracked.PSet(
9  SelectEvents = cms.vstring('pathALCARECOHcalCalMinBias')
10  ),
11  outputCommands = cms.untracked.vstring(
12  'keep *_gtDigisAlCaMB_*_*',
13  'keep HBHERecHitsSorted_hbherecoMBNZS_*_*',
14  'keep HORecHitsSorted_horecoMBNZS_*_*',
15  'keep HFRecHitsSorted_hfrecoMBNZS_*_*',
16  'keep HBHERecHitsSorted_hbherecoNoise_*_*',
17  'keep HORecHitsSorted_horecoNoise_*_*',
18  'keep HFRecHitsSorted_hfrecoNoise_*_*')
19 )
20 
21 import copy
22 OutALCARECOHcalCalMinBias=copy.deepcopy(OutALCARECOHcalCalMinBias_noDrop)
23 OutALCARECOHcalCalMinBias.outputCommands.insert(0, "drop *")