Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:29:03

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 #AOD content
0004 BeamSpotAOD = cms.PSet(
0005     outputCommands = cms.untracked.vstring('keep *_offlineBeamSpot_*_*')
0006 )
0007 
0008 #RECO content
0009 BeamSpotRECO = cms.PSet(
0010     outputCommands = cms.untracked.vstring()
0011 )
0012 BeamSpotRECO.outputCommands.extend(BeamSpotAOD.outputCommands)
0013 
0014 #Full Event content
0015 BeamSpotFEVT = cms.PSet(
0016     outputCommands = cms.untracked.vstring()
0017 )
0018 BeamSpotFEVT.outputCommands.extend(BeamSpotRECO.outputCommands)
0019