CMS 3D CMS Logo

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