CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/SimGeneral/Configuration/python/SimGeneral_EventContent_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 #Full Event content
00004 SimGeneralFEVTDEBUG = cms.PSet(
00005     outputCommands = cms.untracked.vstring('drop *_trackingtruthprod_*_*', 
00006         'drop *_electrontruth_*_*', 
00007         'keep *_mergedtruth_MergedTrackTruth_*',
00008         'keep CrossingFramePlaybackInfoExtended_*_*_*')
00009 )
00010 #RAW content
00011 SimGeneralRAW = cms.PSet(
00012     outputCommands = cms.untracked.vstring('keep CrossingFramePlaybackInfoExtended_*_*_*',
00013                                            'keep PileupSummaryInfos_*_*_*')
00014 )
00015 #RECO content
00016 SimGeneralRECO = cms.PSet(
00017     outputCommands = cms.untracked.vstring('keep PileupSummaryInfos_*_*_*')
00018 )
00019 #AOD content
00020 SimGeneralAOD = cms.PSet(
00021     outputCommands = cms.untracked.vstring('keep PileupSummaryInfos_*_*_*')
00022 )
00023