CMS 3D CMS Logo

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  'keep EBSrFlagsSorted_ecalDigis__*',
14  'keep EESrFlagsSorted_ecalDigis__*'
15  )
16 )
17 # RECO content
18 # .. calibrated RecHits
19 ecalLocalRecoRECO = cms.PSet(
20  outputCommands = cms.untracked.vstring(
21  'keep *_ecalPreshowerRecHit_*_*',
22  'keep *_ecalRecHit_*_*',
23  'keep *_ecalCompactTrigPrim_*_*',
24  'keep ESDataFramesSorted_ecalPreshowerDigis_*_*',
25  'keep EBSrFlagsSorted_ecalDigis__*',
26  'keep EESrFlagsSorted_ecalDigis__*'
27  )
28 )
29 # AOD content
30 # .. nothing
31 ecalLocalRecoAOD = cms.PSet(
32  outputCommands = cms.untracked.vstring()
33 )
34