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 intedmValueMap_trackExtenderWithMTD_*_*',
7  'keep floatedmValueMap_trackExtenderWithMTD_*_*',
8  'keep *_mtdTrackQualityMVA_*_*')
9 )
10 
11 #RECO content
12 RecoMTDRECO = cms.PSet(
13  outputCommands = cms.untracked.vstring(
14  'keep recoTrack*_trackExtenderWithMTD_*_*',
15  'keep TrackingRecHitsOwned_trackExtenderWithMTD_*_*',
16  )
17 )
18 RecoMTDRECO.outputCommands.extend(RecoMTDAOD.outputCommands)
19 
20 #FEVT content
21 RecoMTDFEVT = cms.PSet(
22  outputCommands = cms.untracked.vstring()
23 )
24 RecoMTDFEVT.outputCommands.extend(RecoMTDRECO.outputCommands)