File indexing completed on 2023-03-17 11:22:07
0001 import FWCore.ParameterSet.Config as cms
0002
0003
0004
0005 RecoTrackerAOD = cms.PSet(
0006 outputCommands = cms.untracked.vstring(
0007 'keep recoTracks_ctfWithMaterialTracksBeamHaloMuon_*_*')
0008 )
0009
0010
0011 RecoTrackerRECO = cms.PSet(
0012 outputCommands = cms.untracked.vstring(
0013 'keep recoTrackExtras_ctfWithMaterialTracksBeamHaloMuon_*_*',
0014 'keep TrackingRecHitsOwned_ctfWithMaterialTracksBeamHaloMuon_*_*')
0015 )
0016 RecoTrackerRECO.outputCommands.extend(RecoTrackerAOD.outputCommands)
0017
0018
0019 RecoTrackerFEVT = cms.PSet(
0020 outputCommands = cms.untracked.vstring()
0021 )
0022 RecoTrackerFEVT.outputCommands.extend(RecoTrackerRECO.outputCommands)