Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:27:20

0001 # The following comments couldn't be translated into the new config version:
0002 
0003 #        "keep recoPFClusters_*_*_*",
0004 #        "keep recoPFBlocks_*_*_*", 
0005 
0006 import FWCore.ParameterSet.Config as cms
0007 
0008 # Full Event content 
0009 RecoParticleFlowFEVT = cms.PSet(
0010     outputCommands = cms.untracked.vstring('drop CaloTowersSorted_towerMakerPF_*_*',
0011         'keep recoTracks_firstnuclearWithMaterialTracks_*_*', 
0012         'keep recoTrackExtras_firstnuclearWithMaterialTracks_*_*', 
0013         'keep TrackingRecHitsOwned_firstnuclearWithMaterialTracks_*_*',        
0014         'keep *_firstnuclearInteractionMaker_*_*',                                 
0015         'keep recoPFClusters_*_*_*', 
0016         'keep recoPFBlocks_*_*_*', 
0017         'keep recoPFCandidates_*_*_*')
0018 )
0019 # RECO content
0020 RecoParticleFlowRECO = cms.PSet(
0021     outputCommands = cms.untracked.vstring('drop CaloTowersSorted_towerMakerPF_*_*',
0022         'keep recoTracks_firstnuclearWithMaterialTracks_*_*', 
0023         'keep recoTrackExtras_firstnuclearWithMaterialTracks_*_*', 
0024         'keep TrackingRecHitsOwned_firstnuclearWithMaterialTracks_*_*', 
0025         'keep *_firstnuclearInteractionMaker_*_*',                                           
0026         'keep recoPFClusters_*_*_*', 
0027         'keep recoPFBlocks_*_*_*', 
0028         'keep recoPFCandidates_*_*_*')
0029 )
0030 # AOD content
0031 RecoParticleFlowAOD = cms.PSet(
0032     outputCommands = cms.untracked.vstring('drop CaloTowersSorted_towerMakerPF_*_*',
0033         'keep recoTracks_firstnuclearWithMaterialTracks_*_*',                                    
0034         'keep *_firstnuclearInteractionMaker_*_*',
0035         'keep recoPFCandidates_*_*_*')
0036 )
0037