-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29299 from jeongeun/eventcontent-11X
Update event content structure in RecoEcal and RecoVertex
- Loading branch information
Showing
3 changed files
with
80 additions
and
117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 10 additions & 6 deletions
16
RecoVertex/BeamSpotProducer/python/BeamSpot_EventContent_cff.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,19 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
#Full Event content | ||
BeamSpotFEVT = cms.PSet( | ||
#AOD content | ||
BeamSpotAOD = cms.PSet( | ||
outputCommands = cms.untracked.vstring('keep *_offlineBeamSpot_*_*') | ||
) | ||
|
||
#RECO content | ||
BeamSpotRECO = cms.PSet( | ||
outputCommands = cms.untracked.vstring('keep *_offlineBeamSpot_*_*') | ||
outputCommands = cms.untracked.vstring() | ||
) | ||
#AOD content | ||
BeamSpotAOD = cms.PSet( | ||
outputCommands = cms.untracked.vstring('keep *_offlineBeamSpot_*_*') | ||
BeamSpotRECO.outputCommands.extend(BeamSpotAOD.outputCommands) | ||
|
||
#Full Event content | ||
BeamSpotFEVT = cms.PSet( | ||
outputCommands = cms.untracked.vstring() | ||
) | ||
BeamSpotFEVT.outputCommands.extend(BeamSpotRECO.outputCommands) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters