CMS 3D CMS Logo

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

Go to the documentation of this file.
00001 # Author     : Gero Flucke
00002 # Date       :   July 19th, 2007
00003 # last update: $Date: 2011/07/01 07:01:20 $ by $Author: mussgill $
00004 
00005 import FWCore.ParameterSet.Config as cms
00006 
00007 # AlCaReco for track based alignment using Cosmic muon events
00008 OutALCARECOTkAlCosmics_noDrop = cms.PSet(
00009     SelectEvents = cms.untracked.PSet(
00010         SelectEvents = cms.vstring('pathALCARECOTkAlCosmicsCTF', 
00011             'pathALCARECOTkAlCosmicsCosmicTF',
00012             'pathALCARECOTkAlCosmicsRegional')
00013     ),
00014     outputCommands = cms.untracked.vstring(
00015 #        'keep *_ALCARECOTkAlCosmics*_*_*', # keeps also 0T ones if in same job
00016         'keep *_ALCARECOTkAlCosmicsCTF_*_*', 
00017         'keep *_ALCARECOTkAlCosmicsCosmicTF_*_*', 
00018         'keep *_ALCARECOTkAlCosmicsRegional_*_*', 
00019         'keep siStripDigis_DetIdCollection_*_*',
00020         'keep L1AcceptBunchCrossings_*_*_*',
00021         'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*',
00022         'keep *_TriggerResults_*_*',
00023         'keep DcsStatuss_scalersRawToDigi_*_*',
00024         'keep Si*Cluster*_si*Clusters_*_*', # for cosmics keep original clusters
00025         'keep recoMuons_muons1Leg_*_*') # save muons as timing info is needed for BP corrections in deconvolution
00026 )
00027 
00028 import copy
00029 OutALCARECOTkAlCosmics = copy.deepcopy(OutALCARECOTkAlCosmics_noDrop)
00030 OutALCARECOTkAlCosmics.outputCommands.insert(0, "drop *")