CMS 3D CMS Logo

RecoLocalCalo_EventContentCosmics_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
4 #
5 # start with HCAL part
6 #
7 #FEVT
8 RecoLocalCaloFEVT = cms.PSet(
9  outputCommands = cms.untracked.vstring('keep *_hbhereco_*_*',
10  'keep *_hbheprereco_*_*',
11  'keep *_hfprereco_*_*',
12  'keep *_hfreco_*_*',
13  'keep *_horeco_*_*',
14  'keep HBHERecHitsSorted_hbherecoMB_*_*',
15  'keep HBHERecHitsSorted_hbheprerecoMB_*_*',
16  'keep HORecHitsSorted_horecoMB_*_*',
17  'keep HFRecHitsSorted_hfrecoMB_*_*',
18  'keep ZDCDataFramesSorted_*Digis_*_*',
19  'keep ZDCRecHitsSorted_*_*_*',
20  'keep HcalUnpackerReport_*_*_*'
21  )
22 )
23 #RECO content
24 RecoLocalCaloRECO = cms.PSet(
25  outputCommands = cms.untracked.vstring('keep *_hbhereco_*_*',
26  'keep *_hfprereco_*_*',
27  'keep *_hfreco_*_*',
28  'keep *_horeco_*_*',
29  'keep HBHERecHitsSorted_hbherecoMB_*_*',
30  'keep HORecHitsSorted_horecoMB_*_*',
31  'keep HFRecHitsSorted_hfrecoMB_*_*',
32  #'keep ZDCDataFramesSorted_*Digis_*_*',
33  'keep ZDCDataFramesSorted_hcalDigis_*_*',
34  'keep ZDCDataFramesSorted_castorDigis_*_*',
35  'keep ZDCDataFramesSorted_simHcalUnsuppressedDigis_*_*',
36  'keep ZDCRecHitsSorted_zdcreco_*_*',
37  #'keep HcalUnpackerReport_*_*_*'
38  'keep HcalUnpackerReport_castorDigis_*_*',
39  'keep HcalUnpackerReport_hcalDigis_*_*'
40  )
41 )
42 #AOD content
43 RecoLocalCaloAOD = cms.PSet(
44  outputCommands = cms.untracked.vstring()
45 )
46 RecoLocalCaloFEVT.outputCommands.extend(ecalLocalRecoFEVT.outputCommands)
47 RecoLocalCaloRECO.outputCommands.extend(ecalLocalRecoRECO.outputCommands)
48 RecoLocalCaloAOD.outputCommands.extend(ecalLocalRecoAOD.outputCommands)
49