CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ecalLocalReco_EventContentCosmics_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # Full Event content
4 # .. EB + EE uncalibrated recHits
5 # .. calibrated RecHits
6 ecalLocalRecoFEVT = cms.PSet(
7  outputCommands = cms.untracked.vstring(
8  'keep *_ecalWeightUncalibRecHit_*_*',
9  'keep *_ecalFixedAlphaBetaFitUncalibRecHit_*_*',
10  'keep *_ecalPreshowerRecHit_*_*',
11  'keep *_ecalRecHit_*_*',
12  'keep ESDataFramesSorted_ecalPreshowerDigis_*_*'
13  )
14 )
15 # RECO content
16 # .. calibrated RecHits
17 ecalLocalRecoRECO = cms.PSet(
18  outputCommands = cms.untracked.vstring(
19  'keep *_ecalPreshowerRecHit_*_*',
20  'keep *_ecalRecHit_*_*',
21  'keep *_ecalCompactTrigPrim_*_*',
22  'keep ESDataFramesSorted_ecalPreshowerDigis_*_*'
23  )
24 )
25 # AOD content
26 # .. nothing
27 ecalLocalRecoAOD = cms.PSet(
28  outputCommands = cms.untracked.vstring()
29 )
30