CMS 3D CMS Logo

RecoTrackerBHM_EventContent_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 #Tracks without extra and hits
3 
4 #AOD content
5 RecoTrackerAOD = cms.PSet(
6  outputCommands = cms.untracked.vstring(
7  'keep recoTracks_ctfWithMaterialTracksBeamHaloMuon_*_*')
8 )
9 
10 #RECO content
11 RecoTrackerRECO = cms.PSet(
12  outputCommands = cms.untracked.vstring(
13  'keep recoTrackExtras_ctfWithMaterialTracksBeamHaloMuon_*_*',
14  'keep TrackingRecHitsOwned_ctfWithMaterialTracksBeamHaloMuon_*_*')
15 )
16 RecoTrackerRECO.outputCommands.extend(RecoTrackerAOD.outputCommands)
17 
18 #Full Event content
19 RecoTrackerFEVT = cms.PSet(
20  outputCommands = cms.untracked.vstring()
21 )
22 RecoTrackerFEVT.outputCommands.extend(RecoTrackerRECO.outputCommands)