CMS 3D CMS Logo

RecoHiTracker_EventContent_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #AOD content
4 RecoHiTrackerAOD = cms.PSet(
5  outputCommands = cms.untracked.vstring(
6  'keep recoTracks_hiGeneralTracks_*_*',
7  'keep recoTracks_hiGeneralAndPixelTracks_*_*',
8  'keep recoVertexs_hiSelectedVertex_*_*')
9 )
10 
11 #RECO content
12 RecoHiTrackerRECO = cms.PSet(
13  outputCommands = cms.untracked.vstring(
14  'keep *_hiGeneralTracks_*_*',
15  'keep *_hiGeneralAndPixelTracks_*_*',
16  'keep recoVertexs_hiPixelMedianVertex_*_*',
17  'keep recoVertexs_hiPixelAdaptiveVertex_*_*',
18  'keep recoVertexs_hiSelectedPixelVertex_*_*',
19  'keep recoVertexs_hiPixelClusterVertex_*_*')
20 )
21 RecoHiTrackerRECO.outputCommands.extend(RecoHiTrackerAOD.outputCommands)
22 
23 RecoHiTrackerLocalRECO = cms.PSet(
24  outputCommands = cms.untracked.vstring(
25  'keep *_*_APVCM_*')
26 )
27 
28 #Full Event content
29 RecoHiTrackerFEVT = cms.PSet(
30  outputCommands = cms.untracked.vstring(
31  'keep *_hiPixel3PrimTracks_*_*',
32  'keep *_hiPixel3ProtoTracks_*_*',
33  'keep *_hiSelectedProtoTracks_*_*',
34  'keep recoVertexs_hiSelectedVertex_*_*')
35 )
36 RecoHiTrackerFEVT.outputCommands.extend(RecoHiTrackerRECO.outputCommands)
37 
38 RecoHiTrackerLocalFEVT = cms.PSet(
39  outputCommands = cms.untracked.vstring(
40  'keep *_siStripZeroSuppression_BADAPVBASELINE_*',
41  'keep SiStripRawDigiedmDetSetVector_siStripZeroSuppression_VirginRaw_*')
42 )
43 RecoHiTrackerLocalFEVT.outputCommands.extend(RecoHiTrackerLocalRECO.outputCommands)