CMS 3D CMS Logo

BeamSpot_EventContent_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #AOD content
4 BeamSpotAOD = cms.PSet(
5  outputCommands = cms.untracked.vstring('keep *_offlineBeamSpot_*_*')
6 )
7 
8 #RECO content
9 BeamSpotRECO = cms.PSet(
10  outputCommands = cms.untracked.vstring()
11 )
12 BeamSpotRECO.outputCommands.extend(BeamSpotAOD.outputCommands)
13 
14 #Full Event content
15 BeamSpotFEVT = cms.PSet(
16  outputCommands = cms.untracked.vstring()
17 )
18 BeamSpotFEVT.outputCommands.extend(BeamSpotRECO.outputCommands)
19