CMS 3D CMS Logo

RecoLocalFastTime_EventContent_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #FEVT
4 RecoLocalFastTimeFEVT = cms.PSet(
5  outputCommands = cms.untracked.vstring(
6  'keep *_mtdUncalibratedRecHits_*_*',
7  'keep *_mtdRecHits_*_*',
8  'keep *_mtdClusters_*_*',
9  'keep *_mtdTrackingRecHits_*_*'
10  )
11 )
12 #RECO content
13 RecoLocalFastTimeRECO = cms.PSet(
14  outputCommands = cms.untracked.vstring(
15  'keep *_mtdRecHits_*_*',
16  'keep *_mtdClusters_*_*',
17  )
18 )
19 #AOD content
20 RecoLocalFastTimeAOD = cms.PSet(
21  outputCommands = cms.untracked.vstring(
22  'keep *_mtdClusters_*_*',
23  )
24 )
25