CMS 3D CMS Logo

RecoHGCal_EventContent_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from RecoHGCal.TICL.iterativeTICL_cff import ticlIterLabelsMerge
4 
5 trackstersIters = ['keep *_ticlTracksters'+iteration+'_*_*' for iteration in ticlIterLabelsMerge]
6 
7 #AOD content
8 TICL_AOD = cms.PSet(
9  outputCommands = cms.untracked.vstring()
10  )
11 
12 #RECO content
13 TICL_RECO = cms.PSet(
14  outputCommands = cms.untracked.vstring(
15  trackstersIters +
16  ['keep *_ticlTrackstersHFNoseTrkEM_*_*',
17  'keep *_ticlTrackstersHFNoseEM_*_*',
18  'keep *_ticlTrackstersHFNoseMIP_*_*',
19  'keep *_ticlTrackstersHFNoseHAD_*_*',
20  'keep *_ticlTrackstersHFNoseMerge_*_*',] +
21  ['keep *_pfTICL_*_*']
22  )
23  )
24 TICL_RECO.outputCommands.extend(TICL_AOD.outputCommands)
25 
26 # FEVT Content
27 TICL_FEVT = cms.PSet(
28  outputCommands = cms.untracked.vstring(
29  'keep *_ticlSimTracksters_*_*',
30  )
31  )
32 TICL_FEVT.outputCommands.extend(TICL_RECO.outputCommands)
iterativeTICL_cff