CMS 3D CMS Logo

RecoHiEvtPlane_EventContent_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # AOD content
4 RecoHiEvtPlaneAOD = cms.PSet(
5  outputCommands = cms.untracked.vstring(
6  'keep recoEvtPlanes_hiEvtPlane_*_*',
7  'keep ZDCRecHitsSorted_zdcreco_*_*',
8  'keep ZDCDataFramesSorted_hcalDigis_*_*',
9  'keep HFRecHitsSorted_hfreco_*_*')
10 )
11 
12 # RECO content
13 RecoHiEvtPlaneRECO = cms.PSet(
14  outputCommands = cms.untracked.vstring()
15 )
16 RecoHiEvtPlaneRECO.outputCommands.extend(RecoHiEvtPlaneAOD.outputCommands)
17 
18 # FEVT content
19 RecoHiEvtPlaneFEVT = cms.PSet(
20  outputCommands = cms.untracked.vstring()
21 )
22 RecoHiEvtPlaneFEVT.outputCommands.extend(RecoHiEvtPlaneRECO.outputCommands)