Skip to content

Commit

Permalink
update eventcontent, fix redundant line
Browse files Browse the repository at this point in the history
  • Loading branch information
jeongeun committed Apr 20, 2020
1 parent 14ed839 commit c960422
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
17 changes: 8 additions & 9 deletions RecoEcal/Configuration/python/RecoEcal_EventContent_cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
func=lambda outputCommands: outputCommands.extend(['keep recoSuperClusters_correctedIslandBarrelSuperClusters_*_*',
'keep recoSuperClusters_correctedIslandEndcapSuperClusters_*_*'])
)

# RECO content
RecoEcalRECO = cms.PSet(
outputCommands = cms.untracked.vstring(
Expand All @@ -53,17 +54,15 @@
'keep recoSuperClusters_correctedHybridSuperClusters_*_*',
# Endcap clusters
'keep *_multi5x5SuperClusters_*_*',
'keep recoSuperClusters_multi5x5SuperClusters_*_*',
'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*',
# Particle Flow superclusters
'keep *_particleFlowSuperClusterECAL_*_*',
'keep *_particleFlowSuperClusterOOTECAL_*_*',
# DROP statements # not used
#'drop recoClusterShapes_*_*_*',
#'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*',
#'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*',
#'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*')
)
# DROP statements
'drop recoClusterShapes_*_*_*',
'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*',
'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*',
'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*')
)
RecoEcalRECO.outputCommands.extend(RecoEcalAOD.outputCommands)
_phase2_hgcal_scCommands = ['keep *_particleFlowSuperClusterHGCal_*_*',
Expand All @@ -75,6 +74,7 @@
e.toModify( RecoEcalRECO.outputCommands,
func=lambda outputCommands: outputCommands.extend(['keep recoCaloClusters_islandBasicClusters_*_*'])
)

# Full Event content
RecoEcalFEVT = cms.PSet(
outputCommands = cms.untracked.vstring(
Expand All @@ -88,7 +88,6 @@
# Barrel clusters
'keep *_correctedHybridSuperClusters_*_*',
# Endcap clusters
'keep *_multi5x5*_*_*',
'keep *_correctedMulti5x5*_*_*')
'keep *_multi5x5*_*_*')
)
RecoEcalFEVT.outputCommands.extend(RecoEcalRECO.outputCommands)
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@
BeamSpotAOD = cms.PSet(
outputCommands = cms.untracked.vstring('keep *_offlineBeamSpot_*_*')
)

#RECO content
BeamSpotRECO = cms.PSet(
outputCommands = cms.untracked.vstring()
)
BeamSpotRECO.outputCommands.extend(BeamSpotAOD.outputCommands)

#Full Event content
BeamSpotFEVT = cms.PSet(
outputCommands = cms.untracked.vstring()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import FWCore.ParameterSet.Config as cms

#AOD content
RecoVertexAOD = cms.PSet(
outputCommands = cms.untracked.vstring('keep *_offlinePrimaryVertices__*',
Expand All @@ -23,11 +24,13 @@
outputCommands = RecoVertexAOD.outputCommands + _phase2_tktiming_RecoVertexEventContent)
phase2_timing_layer.toModify( RecoVertexAOD,
outputCommands = RecoVertexAOD.outputCommands + _phase2_tktiming_layer_RecoVertexEventContent)

#RECO content
RecoVertexRECO = cms.PSet(
outputCommands = cms.untracked.vstring()
)
RecoVertexRECO.outputCommands.extend(RecoVertexAOD.outputCommands)

#FEVT content
RecoVertexFEVT = cms.PSet(
outputCommands = cms.untracked.vstring()
Expand Down

0 comments on commit c960422

Please sign in to comment.