File indexing completed on 2024-04-06 12:30:32
0001 import FWCore.ParameterSet.Config as cms
0002
0003 HiMixRAW = cms.PSet(
0004 outputCommands = cms.untracked.vstring(
0005 'keep CrossingFramePlaybackInfoNew_mix_*_*',
0006 'keep *_heavyIon_*_*',
0007 )
0008 )
0009
0010 HiMixRECO = cms.PSet(
0011 outputCommands = cms.untracked.vstring(
0012 'keep CrossingFramePlaybackInfoNew_mix_*_*',
0013 'keep *_heavyIon_*_*',
0014 )
0015 )
0016
0017 HiMixAOD = cms.PSet(
0018 outputCommands = cms.untracked.vstring(
0019 'keep CrossingFramePlaybackInfoNew_mix_*_*',
0020 'keep *_heavyIon_*_*',
0021 )
0022 )
0023