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 *_ftlUncalibratedRecHits_*_*',
7  'keep *_ftlRecHits_*_*',
8  'keep *_mtdUncalibratedRecHits_*_*',
9  'keep *_mtdRecHits_*_*',
10  'keep *_mtdClusters_*_*',
11  'keep *_mtdTrackingRecHits_*_*'
12  )
13 )
14 #RECO content
15 RecoLocalFastTimeRECO = cms.PSet(
16  outputCommands = cms.untracked.vstring(
17  'keep *_ftlRecHits_*_*',
18  'keep *_mtdRecHits_*_*',
19  'keep *_mtdClusters_*_*',
20  )
21 )
22 #AOD content
23 RecoLocalFastTimeAOD = cms.PSet(
24  outputCommands = cms.untracked.vstring(
25  'keep *_mtdClusters_*_*',
26  )
27 )
28