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 ZDCRecHitsSorted_zdcrecoRun3_*_*',
9  'keep ZDCDataFramesSorted_hcalDigis_*_*',
10  'keep HFRecHitsSorted_hfreco_*_*')
11 )
12 
13 # RECO content
14 RecoHiEvtPlaneRECO = cms.PSet(
15  outputCommands = cms.untracked.vstring()
16 )
17 RecoHiEvtPlaneRECO.outputCommands.extend(RecoHiEvtPlaneAOD.outputCommands)
18 
19 # FEVT content
20 RecoHiEvtPlaneFEVT = cms.PSet(
21  outputCommands = cms.untracked.vstring()
22 )
23 RecoHiEvtPlaneFEVT.outputCommands.extend(RecoHiEvtPlaneRECO.outputCommands)