CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/RecoHI/HiMuonAlgos/python/RecoHiMuon_EventContent_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 #Full Event content 
00004 RecoHiMuonFEVT = cms.PSet(
00005     outputCommands = cms.untracked.vstring()
00006     )
00007 
00008 #RECO content
00009 RecoHiMuonRECO = cms.PSet(
00010     outputCommands = cms.untracked.vstring()
00011     )
00012 
00013 #AOD content
00014 RecoHiMuonAOD = cms.PSet(
00015     outputCommands = cms.untracked.vstring()
00016     )
00017 
00018 #Add Isolation
00019 from RecoMuon.MuonIsolationProducers.muIsolation_EventContent_cff import *
00020 # AOD content for re-muons
00021 reRecoMuonAOD = cms.PSet(
00022     outputCommands = cms.untracked.vstring('keep *_remuons_*_*',
00023                                            'keep *_*_remuons_*',
00024                                            # Tracks known by the Muon obj
00025                                            'keep recoTracks_standAloneMuons_*_*', 
00026                                            'keep recoTrackExtras_standAloneMuons_*_*', 
00027                                            'keep TrackingRecHitsOwned_standAloneMuons_*_*', 
00028                                            'keep recoTracks_reglobalMuons_*_*', 
00029                                            'keep recoTrackExtras_reglobalMuons_*_*', 
00030                                            'keep recoTracks_retevMuons_*_*', 
00031                                            'keep recoTrackExtras_retevMuons_*_*', 
00032                                            'keep recoTrackExtras_hiRegitMuGeneralTracks_*_*', 
00033                                            'keep recoTracks_hiRegitMuGeneralTracks_*_*',
00034                                            'keep recoTracksToOnerecoTracksAssociation_retevMuons_*_*'
00035                                            )
00036 )
00037 # RECO content
00038 reRecoMuonRECO = cms.PSet(
00039     outputCommands = cms.untracked.vstring('keep *_MuonSeed_*_*',
00040                                            'keep *_ancientMuonSeed_*_*',
00041                                            'keep *_mergedStandAloneMuonSeeds_*_*',
00042                                            'keep TrackingRecHitsOwned_reglobalMuons_*_*', 
00043                                            'keep TrackingRecHitsOwned_retevMuons_*_*',
00044                                            'keep recoCaloMuons_recalomuons_*_*')
00045 )
00046 # Full Event content 
00047 reRecoMuonFEVT = cms.PSet(
00048     outputCommands = cms.untracked.vstring()
00049 )
00050 RecoHiMuonRECO.outputCommands.extend(reRecoMuonAOD.outputCommands)
00051 RecoHiMuonFEVT.outputCommands.extend(reRecoMuonRECO.outputCommands)
00052