CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/SimTracker/Configuration/python/SimTracker_EventContent_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 #Full Event content with DIGI
00004 SimTrackerFEVTDEBUG = cms.PSet(
00005     outputCommands = cms.untracked.vstring('keep *_simSiPixelDigis_*_*', 
00006         'keep *_simSiStripDigis_*_*', 
00007         'keep *_allTrackMCMatch_*_*', 
00008         'keep *_trackingParticleRecoTrackAsssociation_*_*', 
00009         'keep *_assoc2secStepTk_*_*', 
00010         'keep *_assoc2thStepTk_*_*', 
00011         'keep *_assoc2GsfTracks_*_*', 
00012         'keep *_assocOutInConversionTracks_*_*', 
00013         'keep *_assocInOutConversionTracks_*_*')
00014 )
00015 
00016 SimTrackerDEBUG = cms.PSet(
00017     outputCommands = cms.untracked.vstring('keep PixelDigiSimLinkedmDetSetVector_simSiPixelDigis_*_*', 
00018         'keep StripDigiSimLinkedmDetSetVector_simSiStripDigis_*_*', 
00019         'keep *_allTrackMCMatch_*_*')
00020 )
00021 #RAW content 
00022 SimTrackerRAW = cms.PSet(
00023     outputCommands = cms.untracked.vstring('keep *_allTrackMCMatch_*_*')
00024 )
00025 #RECO content
00026 SimTrackerRECO = cms.PSet(
00027     outputCommands = cms.untracked.vstring('keep *_allTrackMCMatch_*_*')
00028 )
00029 #AOD content
00030 SimTrackerAOD = cms.PSet(
00031     outputCommands = cms.untracked.vstring('keep *_allTrackMCMatch_*_*')
00032 )
00033 
00034