CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/RecoLocalCalo/Configuration/python/ecalLocalReco_EventContentCosmics_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # Full Event content 
00004 # .. EB + EE uncalibrated recHits
00005 # .. calibrated RecHits
00006 ecalLocalRecoFEVT = cms.PSet(
00007     outputCommands = cms.untracked.vstring(
00008         'keep *_ecalWeightUncalibRecHit_*_*', 
00009         'keep *_ecalFixedAlphaBetaFitUncalibRecHit_*_*', 
00010         'keep *_ecalPreshowerRecHit_*_*', 
00011         'keep *_ecalRecHit_*_*',
00012         'keep ESDataFramesSorted_ecalPreshowerDigis_*_*'
00013         )
00014 )
00015 # RECO content
00016 # .. calibrated RecHits
00017 ecalLocalRecoRECO = cms.PSet(
00018     outputCommands = cms.untracked.vstring(
00019         'keep *_ecalPreshowerRecHit_*_*', 
00020         'keep *_ecalRecHit_*_*',
00021         'keep *_ecalCompactTrigPrim_*_*',
00022         'keep ESDataFramesSorted_ecalPreshowerDigis_*_*'
00023         )
00024 )
00025 # AOD content
00026 # .. nothing
00027 ecalLocalRecoAOD = cms.PSet(
00028     outputCommands = cms.untracked.vstring()
00029 )
00030