CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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 *_offlineBeamSpot_*_*',
15  'keep edmTriggerResults_*_*_*',
16  'keep triggerTriggerEvent_*_*_*',
17  'keep recoTracks_generalTracks_*_*',
18  'keep recoTrackExtras_generalTracks_*_*',
19  )
20 )
21 
22 
23 import copy
24 OutALCARECOHcalCalIsoTrk=copy.deepcopy(OutALCARECOHcalCalIsoTrk_noDrop)
25 OutALCARECOHcalCalIsoTrk.outputCommands.insert(0, "drop *")