Skip to content

Commit

Permalink
Define lower data tiers as supersets of higher tiers
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiocos committed Jun 22, 2021
1 parent ebed210 commit 0540f9e
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 23 deletions.
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)
22 changes: 12 additions & 10 deletions RecoMTD/Configuration/python/RecoMTD_EventContent_cff.py
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_*_*')
)

0 comments on commit 0540f9e

Please sign in to comment.