CMS 3D CMS Logo

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 ESDigiCollection_ecalPreshowerDigis_*_*',
10  'keep SiPixelClusteredmNewDetSetVector_ecalAlCaESAlignTrackReducer_*_*',
11  'keep SiStripClusteredmNewDetSetVector_ecalAlCaESAlignTrackReducer_*_*',
12  'keep TrackingRecHitsOwned_ecalAlCaESAlignTrackReducer_*_*',
13  'keep recoTrackExtras_ecalAlCaESAlignTrackReducer_*_*',
14  'keep recoTracks_ecalAlCaESAlignTrackReducer_*_*',
15  'keep recoBeamSpot_offlineBeamSpot_*_*'
16  )
17  )
18 
19 import copy
20 OutALCARECOEcalESAlign=copy.deepcopy(OutALCARECOEcalESAlign_noDrop)
21 OutALCARECOEcalESAlign.outputCommands.insert(0,"drop *")