-
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.
Define lower data tiers as supersets of higher tiers
- Loading branch information
Showing
2 changed files
with
28 additions
and
23 deletions.
There are no files selected for viewing
29 changes: 16 additions & 13 deletions
29
RecoLocalFastTime/Configuration/python/RecoLocalFastTime_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,23 +1,26 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
#FEVT | ||
RecoLocalFastTimeFEVT = cms.PSet( | ||
outputCommands = cms.untracked.vstring( | ||
'keep *_mtdUncalibratedRecHits_*_*', | ||
'keep *_mtdRecHits_*_*', | ||
'keep *_mtdClusters_*_*', | ||
'keep *_mtdTrackingRecHits_*_*' | ||
) | ||
#AOD content | ||
RecoLocalFastTimeAOD = cms.PSet( | ||
outputCommands = cms.untracked.vstring() | ||
) | ||
|
||
#RECO content | ||
RecoLocalFastTimeRECO = cms.PSet( | ||
outputCommands = cms.untracked.vstring( | ||
'keep *_mtdRecHits_*_*', | ||
'keep *_mtdClusters_*_*', | ||
) | ||
) | ||
#AOD content | ||
RecoLocalFastTimeAOD = cms.PSet( | ||
outputCommands = cms.untracked.vstring() | ||
) | ||
) | ||
RecoLocalFastTimeRECO.outputCommands.extend(RecoLocalFastTimeAOD.outputCommands) | ||
|
||
#FEVT | ||
RecoLocalFastTimeFEVT = cms.PSet( | ||
outputCommands = cms.untracked.vstring( | ||
'keep *_mtdRecHits_*_*', | ||
'keep *_mtdClusters_*_*', | ||
'keep *_mtdUncalibratedRecHits_*_*', | ||
'keep *_mtdTrackingRecHits_*_*', | ||
) | ||
) | ||
RecoLocalFastTimeFEVT.outputCommands.extend(RecoLocalFastTimeRECO.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,24 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
#AOD | ||
RecoMTDAOD = cms.PSet( | ||
outputCommands = cms.untracked.vstring( | ||
'keep intedmValueMap_trackExtenderWithMTD_*_*', | ||
'keep floatedmValueMap_trackExtenderWithMTD_*_*', | ||
'keep *_mtdTrackQualityMVA_*_*') | ||
) | ||
|
||
#RECO content | ||
RecoMTDRECO = cms.PSet( | ||
outputCommands = cms.untracked.vstring( | ||
'keep *_trackExtenderWithMTD_*_*', | ||
'keep *_mtdTrackQualityMVA_*_*') | ||
'keep *_trackExtenderWithMTD_*_*', | ||
'keep *_mtdTrackQualityMVA_*_*', | ||
) | ||
) | ||
RecoMTDRECO.outputCommands.extend(RecoMTDAOD.outputCommands) | ||
|
||
#FEVT content | ||
RecoMTDFEVT = cms.PSet( | ||
outputCommands = cms.untracked.vstring() | ||
) | ||
RecoMTDFEVT.outputCommands.extend(RecoMTDRECO.outputCommands) | ||
|
||
#AOD | ||
RecoMTDAOD = cms.PSet( | ||
outputCommands = cms.untracked.vstring( | ||
'keep intedmValueMap_trackExtenderWithMTD_*_*', | ||
'keep floatedmValueMap_trackExtenderWithMTD_*_*', | ||
'keep *_mtdTrackQualityMVA_*_*') | ||
) |