Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # output block for alcastream Electron
0004 # output module 
0005 #  module alcastreamElecronOutput = PoolOutputModule
0006 alcastreamElectronOutput = cms.PSet(
0007     # put this when we have a filter
0008     SelectEvents = cms.untracked.PSet(
0009         SelectEvents = cms.vstring('pathAlcastreamElectron')
0010     ),
0011     outputCommands = cms.untracked.vstring('drop  *', 
0012         'keep  TrackCandidates_gedGsfElectrons_*_*', 
0013         'keep  *_electronFilter_*_*', 
0014         'keep  *_alCaIsolatedElectrons_*_*')
0015 )
0016