Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:24:38

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # AOD content
0004 RecoEcalAOD = cms.PSet(
0005     outputCommands = cms.untracked.vstring(
0006     'keep *_islandBasicClusters_*_*', 
0007         'keep *_fixedMatrixBasicClusters_*_*', 
0008         'keep *_cosmicBasicClusters_*_*', 
0009         'keep *_cosmicSuperClusters_*_*', 
0010         'keep recoCaloClusters_hybridSuperClusters_*_*', 
0011         'keep recoSuperClusters_islandSuperClusters_islandBarrelSuperClusters_*', 
0012         'keep recoSuperClusters_correctedHybridSuperClusters_*_*', 
0013         'keep recoSuperClusters_correctedEndcapSuperClustersWithPreshower_*_*', 
0014         'keep recoPreshowerClusters_fixedMatrixSuperClustersWithPreshower_*_*', 
0015         'keep recoSuperClusters_correctedFixedMatrixSuperClustersWithPreshower_*_*', 
0016         'keep recoPreshowerClusterShapes_preshowerClusterShape_*_*', 
0017         'keep recoPreshowerClusterShapes_fixedMatrixPreshowerClusterShape_*_*')
0018 )
0019 
0020 # RECO content
0021 RecoEcalRECO = cms.PSet(
0022     outputCommands = cms.untracked.vstring(
0023         'keep *_uncleanedHybridSuperClusters_*_*',                         
0024         'keep *_correctedFixedMatrixSuperClustersWithPreshower_*_*',
0025         'keep *_correctedEndcapSuperClustersWithPreshower_*_*')
0026 )
0027 RecoEcalRECO.outputCommands.extend(RecoEcalAOD.outputCommands)
0028 
0029 RecoEcalFEVT = cms.PSet(
0030     outputCommands = cms.untracked.vstring(
0031     'keep *_ecalRecHit_*_*', 
0032         'keep *_ecalWeightUncalibRecHit_*_*', 
0033         'keep *_ecalPreshowerRecHit_*_*', 
0034         'keep *_islandSuperClusters_*_*', 
0035         'keep *_hybridSuperClusters_*_*', 
0036         'keep *_correctedFixedMatrix*_*_*', 
0037         'keep *_fixedMatrix*_*_*', 
0038         'keep *_correctedIslandBarrelSuperClusters_*_*', 
0039         'keep *_correctedIslandEndcapSuperClusters_*_*', 
0040         'keep *_correctedHybridSuperClusters_*_*', 
0041         'keep *_preshowerClusterShape_*_*')
0042 )
0043 RecoEcalFEVT.outputCommands.extend(RecoEcalRECO.outputCommands)