File indexing completed on 2024-04-06 12:25:38
0001
0002
0003
0004
0005
0006
0007
0008
0009 import FWCore.ParameterSet.Config as cms
0010
0011
0012 ecalLocalRecoAOD = cms.PSet(
0013 outputCommands = cms.untracked.vstring()
0014 )
0015
0016
0017 ecalLocalRecoRECO = cms.PSet(
0018 outputCommands = cms.untracked.vstring(
0019 'keep *_ecalPreshowerRecHit_*_*',
0020 'keep *_ecalRecHit_*_*',
0021 'keep *_ecalCompactTrigPrim_*_*',
0022 'keep *_ecalTPSkim_*_*',
0023 'keep EBSrFlagsSorted_ecalDigis__*',
0024 'keep EESrFlagsSorted_ecalDigis__*')
0025 )
0026 ecalLocalRecoRECO.outputCommands.extend(ecalLocalRecoAOD.outputCommands)
0027
0028
0029 _phase2_timing_EcalOutputCommands = ['keep *_mix_EBTimeDigi_*',
0030 'keep *_mix_EETimeDigi_*',
0031 'keep *_ecalDetailedTimeRecHit_*_*']
0032
0033 from Configuration.Eras.Modifier_phase2_timing_cff import phase2_timing
0034 phase2_timing.toModify( ecalLocalRecoRECO,
0035 outputCommands = ecalLocalRecoRECO.outputCommands + _phase2_timing_EcalOutputCommands )
0036
0037
0038 ecalLocalRecoFEVT = cms.PSet(
0039 outputCommands = cms.untracked.vstring(
0040 'keep *_ecalMultiFitUncalibRecHit_*_*')
0041 )
0042 ecalLocalRecoFEVT.outputCommands.extend(ecalLocalRecoRECO.outputCommands)