CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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  ),
12  outputCommands = cms.untracked.vstring(
13  'keep *_ALCARECOTkAlCosmics*0T_*_*',
14  'keep siStripDigis_DetIdCollection_*_*',
15  'keep L1AcceptBunchCrossings_*_*_*',
16  'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*',
17  'keep *_TriggerResults_*_*',
18  'keep DcsStatuss_scalersRawToDigi_*_*',
19  'keep Si*Cluster*_si*Clusters_*_*', # for cosmics keep original clusters
20  'keep recoMuons_muons1Leg_*_*') # save muons as timing info is needed for BP corrections in deconvolution
21 )
22 
23 import copy
24 OutALCARECOTkAlCosmics0T = copy.deepcopy(OutALCARECOTkAlCosmics0T_noDrop)
25 OutALCARECOTkAlCosmics0T.outputCommands.insert(0, "drop *")