CMS 3D CMS Logo

TrackingTools_EventContent_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #AOD content
4 TrackingToolsAOD = cms.PSet(
5  outputCommands = cms.untracked.vstring('keep recoTracks_GsfGlobalElectronTest_*_*',
6  'keep recoGsfTracks_electronGsfTracks_*_*'
7  )
8 )
9 
10 from Configuration.Eras.Modifier_phase2_hgcal_cff import phase2_hgcal
11 
12 #RECO content
13 TrackingToolsRECO = cms.PSet(
14  outputCommands = cms.untracked.vstring('keep *_CkfElectronCandidates_*_*',
15  'keep *_GsfGlobalElectronTest_*_*',
16  'keep *_electronMergedSeeds_*_*',
17  'keep recoGsfTrackExtras_electronGsfTracks_*_*',
18  'keep recoTrackExtras_electronGsfTracks_*_*',
19  'keep TrackingRecHitsOwned_electronGsfTracks_*_*'
20  )
21 )
22 TrackingToolsRECO.outputCommands.extend(TrackingToolsAOD.outputCommands)
23 
24 #FEVT content
25 TrackingToolsFEVT = cms.PSet(
26  outputCommands = cms.untracked.vstring('keep *_electronGsfTracks_*_*'
27  )
28 )
29 TrackingToolsFEVT.outputCommands.extend(TrackingToolsRECO.outputCommands)