CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_1/src/RecoLocalCalo/Configuration/python/RecoLocalCalo_EventContentCosmics_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 from RecoLocalCalo.Configuration.ecalLocalReco_EventContentCosmics_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         )
00020 )
00021 #RECO content
00022 RecoLocalCaloRECO = cms.PSet(
00023     outputCommands = cms.untracked.vstring('keep *_hbhereco_*_*', 
00024         'keep *_hfreco_*_*', 
00025         'keep *_horeco_*_*',
00026         'keep HBHERecHitsSorted_hbherecoMB_*_*',
00027         'keep HORecHitsSorted_horecoMB_*_*',
00028         'keep HFRecHitsSorted_hfrecoMB_*_*',
00029         'keep ZDCDataFramesSorted_*Digis_*_*',
00030         'keep ZDCRecHitsSorted_*_*_*' 
00031         )
00032 )
00033 #AOD content
00034 RecoLocalCaloAOD = cms.PSet(
00035     outputCommands = cms.untracked.vstring()
00036 )
00037 RecoLocalCaloFEVT.outputCommands.extend(ecalLocalRecoFEVT.outputCommands)
00038 RecoLocalCaloRECO.outputCommands.extend(ecalLocalRecoRECO.outputCommands)
00039 RecoLocalCaloAOD.outputCommands.extend(ecalLocalRecoAOD.outputCommands)
00040