/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoHI/HiTracking/python/RecoHiTracker_EventContent_cff.py
43 строки
1 KB
Jeongeun Lee
update eventcontent structure in RecoHI packages
28 апр 2020, 18:06
28 апр 2020, 18:06
6b9c94e
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms #AOD content RecoHiTrackerAOD = cms.PSet( outputCommands = cms.untracked.vstring( 'keep recoTracks_hiGeneralTracks_*_*', 'keep recoTracks_hiGeneralAndPixelTracks_*_*', 'keep recoVertexs_hiSelectedVertex_*_*') ) #RECO content RecoHiTrackerRECO = cms.PSet( outputCommands = cms.untracked.vstring( 'keep *_hiGeneralTracks_*_*', 'keep *_hiGeneralAndPixelTracks_*_*', 'keep recoVertexs_hiPixelMedianVertex_*_*', 'keep recoVertexs_hiPixelAdaptiveVertex_*_*', 'keep recoVertexs_hiSelectedPixelVertex_*_*', 'keep recoVertexs_hiPixelClusterVertex_*_*') ) RecoHiTrackerRECO.outputCommands.extend(RecoHiTrackerAOD.outputCommands) RecoHiTrackerLocalRECO = cms.PSet( outputCommands = cms.untracked.vstring( 'keep *_*_APVCM_*') ) #Full Event content RecoHiTrackerFEVT = cms.PSet( outputCommands = cms.untracked.vstring( 'keep *_hiPixel3PrimTracks_*_*', 'keep *_hiPixel3ProtoTracks_*_*', 'keep *_hiSelectedProtoTracks_*_*', 'keep recoVertexs_hiSelectedVertex_*_*') ) RecoHiTrackerFEVT.outputCommands.extend(RecoHiTrackerRECO.outputCommands) RecoHiTrackerLocalFEVT = cms.PSet( outputCommands = cms.untracked.vstring( 'keep *_siStripZeroSuppression_BADAPVBASELINE_*', 'keep SiStripRawDigiedmDetSetVector_siStripZeroSuppression_VirginRaw_*') ) RecoHiTrackerLocalFEVT.outputCommands.extend(RecoHiTrackerLocalRECO.outputCommands)