Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # AOD content
0004 ecalLocalRecoAOD = cms.PSet(
0005     outputCommands = cms.untracked.vstring()
0006 )
0007 # RECO content
0008 # .. calibrated RecHits
0009 ecalLocalRecoRECO = cms.PSet(
0010     outputCommands = cms.untracked.vstring(
0011         'keep *_ecalPreshowerRecHit_*_*',
0012         'keep *_ecalRecHit_*_*',
0013         'keep *_ecalCompactTrigPrim_*_*',
0014         'keep ESDataFramesSorted_ecalPreshowerDigis_*_*',
0015         'keep EBSrFlagsSorted_ecalDigis__*',
0016         'keep EESrFlagsSorted_ecalDigis__*')
0017 )
0018 ecalLocalRecoRECO.outputCommands.extend(ecalLocalRecoAOD.outputCommands)
0019 
0020 # Full Event content 
0021 # .. EB + EE uncalibrated recHits
0022 # .. calibrated RecHits
0023 ecalLocalRecoFEVT = cms.PSet(
0024     outputCommands = cms.untracked.vstring(
0025         'keep *_ecalWeightUncalibRecHit_*_*', 
0026         'keep *_ecalFixedAlphaBetaFitUncalibRecHit_*_*')
0027 )
0028 ecalLocalRecoFEVT.outputCommands.extend(ecalLocalRecoRECO.outputCommands)