Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:28:00

0001 import FWCore.ParameterSet.Config as cms
0002 #Tracks without extra and hits
0003 
0004 #AOD content
0005 RecoTrackerAOD = cms.PSet(
0006     outputCommands = cms.untracked.vstring(
0007     'keep recoTracks_ctfWithMaterialTracksBeamHaloMuon_*_*')
0008 )
0009 
0010 #RECO content
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 #Full Event content 
0019 RecoTrackerFEVT = cms.PSet(
0020     outputCommands = cms.untracked.vstring()
0021 )
0022 RecoTrackerFEVT.outputCommands.extend(RecoTrackerRECO.outputCommands)