Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:58:46

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # output block for alcastream HCAL Isotrk
0004 # output module 
0005 #  module alcastreamHcalIsotrkOutput = PoolOutputModule
0006 OutALCARECOHcalCalIsoTrk_noDrop = cms.PSet(
0007     # use this in case of filter available
0008     SelectEvents = cms.untracked.PSet(
0009         SelectEvents = cms.vstring('pathALCARECOHcalCalIsoTrk')
0010     ),
0011     outputCommands = cms.untracked.vstring( 
0012         'keep *_IsoProd_*_*',
0013         'keep HcalNoiseSummary_hcalnoise_*_*',
0014         'keep *_TkAlIsoProd_*_*',
0015         'keep *_hbhereco_*_*',
0016         'keep *_ecalRecHit_*_*',
0017         'keep *_towerMaker_*_*',
0018     'keep *_offlineBeamSpot_*_*',
0019         'keep *_hltTriggerSummaryAOD_*_*',
0020         'keep *_gtStage2Digis_*_*',
0021         'keep *_TriggerResults_*_*',
0022         'keep *_generalTracks_*_*',
0023         'keep *_generalTracksExtra_*_*',
0024         'keep *_offlinePrimaryVertices_*_*',
0025         'keep *_TkAlIsoProdFilter_*_*',
0026         )
0027     )
0028 
0029 import copy
0030 OutALCARECOHcalCalIsoTrk=copy.deepcopy(OutALCARECOHcalCalIsoTrk_noDrop)
0031 OutALCARECOHcalCalIsoTrk.outputCommands.insert(0, "drop *")