CMS 3D CMS Logo

ALCARECOTkAlCosmics0T_Output_cff.py
Go to the documentation of this file.
1 # last update: $Date: 2011/02/09 09:10:11 $ by $Author: cerminar $
2 
3 import FWCore.ParameterSet.Config as cms
4 
5 # AlCaReco for track based alignment using Cosmic muon events
6 OutALCARECOTkAlCosmics0T_noDrop = cms.PSet(
7  SelectEvents = cms.untracked.PSet(
8  SelectEvents = cms.vstring('pathALCARECOTkAlCosmicsCTF0T',
9  'pathALCARECOTkAlCosmicsCosmicTF0T',
10  'pathALCARECOTkAlCosmicsRegional0T',
11  'pathALCARECOTkAlCosmicsDuringCollisions0T'
12  )
13  ),
14  outputCommands = cms.untracked.vstring(
15  #'keep *_ALCARECOTkAlCosmics*0T_*_*',
16  'keep *_ALCARECOTkAlCosmicsCTF0T_*_*',
17  'keep *_ALCARECOTkAlCosmicsCosmicTF0T_*_*',
18  'keep *_ALCARECOTkAlCosmicsRegional0T_*_*',
19  'keep *_ALCARECOTkAlCosmicsDuringCollisions0T_*_*',
20  'keep siStripDigis_DetIdCollection_*_*',
21  'keep L1AcceptBunchCrossings_*_*_*',
22  'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*',
23  'keep *_TriggerResults_*_*',
24  'keep DcsStatuss_scalersRawToDigi_*_*',
25  #'keep Si*Cluster*_si*Clusters_*_*', # for cosmics keep original clusters
26  'keep SiPixelCluster*_siPixelClusters_*_*',
27  'keep SiStripCluster*_siStripClusters_*_*',
28  'keep recoMuons_muons1Leg_*_*') # save muons as timing info is needed for BP corrections in deconvolution
29 )
30 
31 import copy
32 OutALCARECOTkAlCosmics0T = copy.deepcopy(OutALCARECOTkAlCosmics0T_noDrop)
33 OutALCARECOTkAlCosmics0T.outputCommands.insert(0, "drop *")