-
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.
update event content structure and remove no use drops
- Loading branch information
Showing
3 changed files
with
79 additions
and
120 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
14 changes: 8 additions & 6 deletions
14
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,17 @@ | ||
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