File indexing completed on 2024-04-06 11:58:46
0001 import FWCore.ParameterSet.Config as cms
0002
0003
0004
0005
0006
0007 OutALCARECOHcalCalIterativePhiSym_noDrop = cms.PSet(
0008 SelectEvents = cms.untracked.PSet(
0009 SelectEvents = cms.vstring('pathALCARECOHcalCalIterativePhiSym')
0010 ),
0011 outputCommands = cms.untracked.vstring(
0012 "keep *_horeco_*_*",
0013 "keep *_hfreco_*_*",
0014 "keep *_hbhereco_*_*",
0015 "keep *_offlinePrimaryVertices_*_*",
0016 'keep HcalNoiseSummary_hcalnoise_*_*',
0017 "keep *_scalersRawToDigi_*_*",
0018 "keep edmTriggerResults_*_*_HLT")
0019
0020 )
0021
0022 import copy
0023 OutALCARECOHcalCalIterativePhiSym=copy.deepcopy(OutALCARECOHcalCalIterativePhiSym_noDrop)
0024 OutALCARECOHcalCalIterativePhiSym.outputCommands.insert(0, "drop *")