/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoLocalCalo/Configuration/python/ecalLocalReco_EventContent_cff.py
42 строки
1 KB
Jeongeun Lee
fix2 improve readability
08 апр 2020, 12:14
08 апр 2020, 12:14
7a342c2
Код
Авторство
О чём код?
# The following comments couldn't be translated into the new config version: #EB + EE Uncalibrated RecHits #Calibrated RecHits #Calibrated RecHits import FWCore.ParameterSet.Config as cms #AOD content ecalLocalRecoAOD = cms.PSet( outputCommands = cms.untracked.vstring() ) #RECO content ecalLocalRecoRECO = cms.PSet( outputCommands = cms.untracked.vstring( 'keep *_ecalPreshowerRecHit_*_*', 'keep *_ecalRecHit_*_*', 'keep *_ecalCompactTrigPrim_*_*', 'keep *_ecalTPSkim_*_*', 'keep EBSrFlagsSorted_ecalDigis__*', 'keep EESrFlagsSorted_ecalDigis__*') ) ecalLocalRecoRECO.outputCommands.extend(ecalLocalRecoAOD.outputCommands) #mods for timing _phase2_timing_EcalOutputCommands = ['keep *_mix_EBTimeDigi_*', 'keep *_mix_EETimeDigi_*', 'keep *_ecalDetailedTimeRecHit_*_*'] from Configuration.Eras.Modifier_phase2_timing_cff import phase2_timing phase2_timing.toModify( ecalLocalRecoRECO, outputCommands = ecalLocalRecoRECO.outputCommands + _phase2_timing_EcalOutputCommands ) #Full Event content ecalLocalRecoFEVT = cms.PSet( outputCommands = cms.untracked.vstring( 'keep *_ecalMultiFitUncalibRecHit_*_*') ) ecalLocalRecoFEVT.outputCommands.extend(ecalLocalRecoRECO.outputCommands)