Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:30:18

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 #RAW content 
0004 SimG4CoreRAW = cms.PSet(
0005     outputCommands = cms.untracked.vstring('keep *_g4SimHits_*_*', 
0006         'keep edmHepMCProduct_source_*_*')
0007 )
0008 #RECO content
0009 SimG4CoreRECO = cms.PSet(
0010     outputCommands = cms.untracked.vstring('keep edmHepMCProduct_source_*_*', 
0011         'keep SimTracks_g4SimHits_*_*', 
0012         'keep SimVertexs_g4SimHits_*_*')
0013 )
0014 #AOD content
0015 SimG4CoreAOD = cms.PSet(
0016     outputCommands = cms.untracked.vstring()
0017 )
0018 #HLTAODSIM content
0019 SimG4CoreHLTAODSIM = cms.PSet(
0020     outputCommands = cms.untracked.vstring(
0021 'keep SimVertexs_g4SimHits_*_*')
0022 )
0023