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 *_gtStage2Digis_*_*',
20  'keep *_hbheprereco_*_*',
21  'keep *_TriggerResults_*_*',
22  'keep *_generalTracks_*_*',
23  'keep *_generalTracksExtra_*_*',
24  'keep *_offlinePrimaryVertices_*_*',
25  'keep *_TkAlIsoProdFilter_*_*',
26  )
27  )
28 
29 import copy
30 OutALCARECOHcalCalIsoTrk=copy.deepcopy(OutALCARECOHcalCalIsoTrk_noDrop)
31 OutALCARECOHcalCalIsoTrk.outputCommands.insert(0, "drop *")