CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ALCARECOEcalESAlign_Output_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 OutALCARECOEcalESAlign_noDrop = cms.PSet(
4  # put this if you have a filter
5  SelectEvents = cms.untracked.PSet(
6  SelectEvents = cms.vstring('pathALCARECOEcalESAlign')
7  ),
8  outputCommands = cms.untracked.vstring(
9  'keep ESDCCHeaderBlocksSorted_ecalPreshowerDigis_*_*',
10  'keep ESDigiCollection_ecalPreshowerDigis_*_*',
11  'keep ESKCHIPBlocksSorted_ecalPreshowerDigis_*_*',
12  'keep SiPixelClusteredmNewDetSetVector_ecalAlCaESAlignTrackReducer_*_*',
13  'keep SiStripClusteredmNewDetSetVector_ecalAlCaESAlignTrackReducer_*_*',
14  'keep TrackingRecHitsOwned_ecalAlCaESAlignTrackReducer_*_*',
15  'keep recoTrackExtras_ecalAlCaESAlignTrackReducer_*_*',
16  'keep recoTracks_ecalAlCaESAlignTrackReducer_*_*',
17  'keep recoBeamSpot_offlineBeamSpot_*_*'
18  )
19  )
20 
21 import copy
22 OutALCARECOEcalESAlign=copy.deepcopy(OutALCARECOEcalESAlign_noDrop)
23 OutALCARECOEcalESAlign.outputCommands.insert(0,"drop *")