CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_6/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                                            'keep HcalUnpackerReport_*_*_*'
00020         )
00021 )
00022 #RECO content
00023 RecoLocalCaloRECO = cms.PSet(
00024     outputCommands = cms.untracked.vstring('keep *_hbhereco_*_*', 
00025                                            'keep *_hfreco_*_*', 
00026                                            'keep *_horeco_*_*',
00027                                            'keep HBHERecHitsSorted_hbherecoMB_*_*',
00028                                            'keep HORecHitsSorted_horecoMB_*_*',
00029                                            'keep HFRecHitsSorted_hfrecoMB_*_*',
00030                                            'keep ZDCDataFramesSorted_*Digis_*_*',
00031                                            'keep ZDCRecHitsSorted_*_*_*',
00032                                            'keep HcalUnpackerReport_*_*_*'
00033         )
00034 )
00035 #AOD content
00036 RecoLocalCaloAOD = cms.PSet(
00037     outputCommands = cms.untracked.vstring()
00038 )
00039 RecoLocalCaloFEVT.outputCommands.extend(ecalLocalRecoFEVT.outputCommands)
00040 RecoLocalCaloRECO.outputCommands.extend(ecalLocalRecoRECO.outputCommands)
00041 RecoLocalCaloAOD.outputCommands.extend(ecalLocalRecoAOD.outputCommands)
00042