CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RecoLocalMuon_EventContent_cff.py
Go to the documentation of this file.
1 # The following comments couldn't be translated into the new config version:
2 
3 import FWCore.ParameterSet.Config as cms
4 
5 # Full Event content
6 RecoLocalMuonFEVT = cms.PSet(
7  outputCommands = cms.untracked.vstring('keep *_dt1DRecHits_*_*',
8  'keep *_dt4DSegments_*_*',
9  'keep *_csc2DRecHits_*_*',
10  'keep *_cscSegments_*_*',
11  'keep *_rpcRecHits_*_*')
12 )
13 # RECO content
14 RecoLocalMuonRECO = cms.PSet(
15  outputCommands = cms.untracked.vstring('keep *_dt1DRecHits_*_*',
16  'keep *_dt4DSegments_*_*',
17  'keep *_dt1DCosmicRecHits_*_*',
18  'keep *_dt4DCosmicSegments_*_*',
19  'keep *_csc2DRecHits_*_*',
20  'keep *_cscSegments_*_*',
21  'keep *_rpcRecHits_*_*')
22 )
23 # AOD content
24 RecoLocalMuonAOD = cms.PSet(
25  outputCommands = cms.untracked.vstring(
26  'keep *_dt4DSegments_*_*',
27  'keep *_dt4DCosmicSegments_*_*',
28  'keep *_cscSegments_*_*',
29  'keep *_rpcRecHits_*_*')
30 )
31 
32