CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/RecoLocalCalo/Configuration/python/RecoLocalCalo_EventContent_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 from RecoLocalCalo.Configuration.ecalLocalReco_EventContent_cff import *
00004 #
00005 # start with HCAL part
00006 #
00007 #FEVT
00008 RecoLocalCaloFEVT = cms.PSet(
00009     outputCommands = cms.untracked.vstring('keep *_hbhereco_*_*', 
00010                                            'keep *_hbheprereco_*_*',
00011                                            'keep *_hfreco_*_*', 
00012                                            'keep *_horeco_*_*',
00013                                            'keep HBHERecHitsSorted_hbherecoMB_*_*',
00014                                            'keep HBHERecHitsSorted_hbheprerecoMB_*_*',
00015                                            'keep HORecHitsSorted_horecoMB_*_*',
00016                                            'keep HFRecHitsSorted_hfrecoMB_*_*',
00017                                            'keep ZDCDataFramesSorted_*Digis_*_*',
00018                                            'keep ZDCRecHitsSorted_*_*_*',
00019                                            'keep *_reducedHcalRecHits_*_*',
00020                                            'keep *_castorreco_*_*',
00021                                            'keep HcalUnpackerReport_*_*_*'
00022         )
00023 )
00024 #RECO content
00025 RecoLocalCaloRECO = cms.PSet(
00026     outputCommands = cms.untracked.vstring('keep *_hbhereco_*_*', 
00027                                            'keep *_hfreco_*_*', 
00028                                            'keep *_horeco_*_*',
00029                                            'keep HBHERecHitsSorted_hbherecoMB_*_*',
00030                                            'keep HORecHitsSorted_horecoMB_*_*',
00031                                            'keep HFRecHitsSorted_hfrecoMB_*_*',
00032                                            'keep ZDCDataFramesSorted_*Digis_*_*',
00033                                            'keep ZDCRecHitsSorted_*_*_*',
00034                                            'keep *_reducedHcalRecHits_*_*',
00035                                            'keep *_castorreco_*_*',
00036                                            'keep HcalUnpackerReport_*_*_*'
00037         )
00038 )
00039 #AOD content
00040 RecoLocalCaloAOD = cms.PSet(
00041     outputCommands = cms.untracked.vstring(
00042     'keep *_castorreco_*_*',
00043     'keep *_reducedHcalRecHits_*_*',
00044     'keep HcalUnpackerReport_*_*_*'
00045     )
00046 )
00047 RecoLocalCaloFEVT.outputCommands.extend(ecalLocalRecoFEVT.outputCommands)
00048 RecoLocalCaloRECO.outputCommands.extend(ecalLocalRecoRECO.outputCommands)
00049 RecoLocalCaloAOD.outputCommands.extend(ecalLocalRecoAOD.outputCommands)
00050