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 # DT
4 
5 # CSC
6 
7 # RPC
8 
9 # DT
10 
11 # CSC
12 
13 # RPC
14 
15 import FWCore.ParameterSet.Config as cms
16 
17 # Full Event content
18 RecoLocalMuonFEVT = cms.PSet(
19  outputCommands = cms.untracked.vstring('keep *_dt1DRecHits_*_*',
20  'keep *_dt4DSegments_*_*',
21  'keep *_csc2DRecHits_*_*',
22  'keep *_cscSegments_*_*',
23  'keep *_rpcRecHits_*_*')
24 )
25 # RECO content
26 RecoLocalMuonRECO = cms.PSet(
27  outputCommands = cms.untracked.vstring('keep *_dt1DRecHits_*_*',
28  'keep *_dt4DSegments_*_*',
29  'keep *_dt1DCosmicRecHits_*_*',
30  'keep *_dt4DCosmicSegments_*_*',
31  'keep *_csc2DRecHits_*_*',
32  'keep *_cscSegments_*_*',
33  'keep *_rpcRecHits_*_*')
34 )
35 # AOD content
36 RecoLocalMuonAOD = cms.PSet(
37  outputCommands = cms.untracked.vstring()
38 )
39 
40