CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics0T_Output_cff.py

Go to the documentation of this file.
00001 # last update: $Date: 2011/07/01 07:01:20 $ by $Author: mussgill $
00002 
00003 import FWCore.ParameterSet.Config as cms
00004 
00005 # AlCaReco for track based alignment using Cosmic muon events
00006 OutALCARECOTkAlCosmics0T_noDrop = cms.PSet(
00007     SelectEvents = cms.untracked.PSet(
00008         SelectEvents = cms.vstring('pathALCARECOTkAlCosmicsCTF0T', 
00009             'pathALCARECOTkAlCosmicsCosmicTF0T',
00010             'pathALCARECOTkAlCosmicsRegional0T')
00011     ),
00012     outputCommands = cms.untracked.vstring(
00013         'keep *_ALCARECOTkAlCosmics*0T_*_*',
00014         'keep siStripDigis_DetIdCollection_*_*',
00015         'keep L1AcceptBunchCrossings_*_*_*',
00016         'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*',
00017         'keep *_TriggerResults_*_*',
00018         'keep DcsStatuss_scalersRawToDigi_*_*',
00019         'keep Si*Cluster*_si*Clusters_*_*', # for cosmics keep original clusters
00020         'keep recoMuons_muons1Leg_*_*') # save muons as timing info is needed for BP corrections in deconvolution
00021 )
00022 
00023 import copy
00024 OutALCARECOTkAlCosmics0T = copy.deepcopy(OutALCARECOTkAlCosmics0T_noDrop)
00025 OutALCARECOTkAlCosmics0T.outputCommands.insert(0, "drop *")