CMS 3D CMS Logo

ALCARECOHcalCalIsoTrk_Output_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # output block for alcastream HCAL Isotrk
4 # output module
5 # module alcastreamHcalIsotrkOutput = PoolOutputModule
6 OutALCARECOHcalCalIsoTrk_noDrop = cms.PSet(
7  # use this in case of filter available
8  SelectEvents = cms.untracked.PSet(
9  SelectEvents = cms.vstring('pathALCARECOHcalCalIsoTrk')
10  ),
11  outputCommands = cms.untracked.vstring(
12  'keep *_IsoProd_*_*',
13  'keep *_TkAlIsoProd_*_*',
14  'keep *_hbhereco_*_*',
15  'keep *_ecalRecHit_*_*',
16  'keep *_towerMaker_*_*',
17  'keep *_offlineBeamSpot_*_*',
18  'keep *_hltTriggerSummaryAOD_*_*',
19  'keep *_TriggerResults_*_*',
20  'keep *_generalTracks_*_*',
21  'keep *_generalTracksExtra_*_*',
22  'keep *_offlinePrimaryVertices_*_*',
23  'keep *_TkAlIsoProdFilter_*_*',
24  )
25  )
26 
27 import copy
28 OutALCARECOHcalCalIsoTrk=copy.deepcopy(OutALCARECOHcalCalIsoTrk_noDrop)
29 OutALCARECOHcalCalIsoTrk.outputCommands.insert(0, "drop *")