Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:25:38

0001 # The following comments couldn't be translated into the new config version:
0002 
0003 #EB + EE Uncalibrated RecHits
0004 
0005 #Calibrated RecHits
0006 
0007 #Calibrated RecHits
0008 
0009 import FWCore.ParameterSet.Config as cms
0010 
0011 #AOD content
0012 ecalLocalRecoAOD = cms.PSet(
0013     outputCommands = cms.untracked.vstring()
0014 )
0015 
0016 #RECO content
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 #mods for timing
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 #Full Event content 
0038 ecalLocalRecoFEVT = cms.PSet(
0039     outputCommands = cms.untracked.vstring(
0040         'keep *_ecalMultiFitUncalibRecHit_*_*')
0041 )
0042 ecalLocalRecoFEVT.outputCommands.extend(ecalLocalRecoRECO.outputCommands)