CMS 3D CMS Logo

RecoMTD_EventContent_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #AOD
4 RecoMTDAOD = cms.PSet(
5  outputCommands = cms.untracked.vstring(
6  'keep *edmValueMap_trackExtenderWithMTD_*_*',
7  'keep *_mtdTrackQualityMVA_*_*')
8 )
9 
10 #RECO content
11 RecoMTDRECO = cms.PSet(
12  outputCommands = cms.untracked.vstring(
13  'keep recoTrack*_trackExtenderWithMTD_*_*',
14  'keep TrackingRecHitsOwned_trackExtenderWithMTD_*_*',
15  )
16 )
17 RecoMTDRECO.outputCommands.extend(RecoMTDAOD.outputCommands)
18 
19 #FEVT content
20 RecoMTDFEVT = cms.PSet(
21  outputCommands = cms.untracked.vstring()
22 )
23 RecoMTDFEVT.outputCommands.extend(RecoMTDRECO.outputCommands)