Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:56:15

0001 # Author     : Gero Flucke
0002 # Date       :   July 19th, 2007
0003 # last update: $Date: 2011/02/09 09:10:11 $ by $Author: cerminar $
0004 
0005 import FWCore.ParameterSet.Config as cms
0006 
0007 # AlCaReco for track based alignment using Cosmic muon events
0008 OutALCARECOTkAlCosmics_noDrop = cms.PSet(
0009     SelectEvents = cms.untracked.PSet(
0010         SelectEvents = cms.vstring('pathALCARECOTkAlCosmicsCTF', 
0011             'pathALCARECOTkAlCosmicsCosmicTF',
0012             'pathALCARECOTkAlCosmicsRegional')
0013     ),
0014     outputCommands = cms.untracked.vstring(
0015 #        'keep *_ALCARECOTkAlCosmics*_*_*', # keeps also 0T ones if in same job
0016         'keep *_ALCARECOTkAlCosmicsCTF_*_*', 
0017         'keep *_ALCARECOTkAlCosmicsCosmicTF_*_*', 
0018         'keep *_ALCARECOTkAlCosmicsRegional_*_*', 
0019         'keep siStripDigis_DetIdCollection_*_*',
0020         'keep L1AcceptBunchCrossings_*_*_*',
0021         'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*',
0022         'keep *_TriggerResults_*_*',
0023         'keep DcsStatuss_scalersRawToDigi_*_*',
0024         'keep Si*Cluster*_si*Clusters_*_*', # for cosmics keep original clusters
0025         'keep recoMuons_muons1Leg_*_*') # save muons as timing info is needed for BP corrections in deconvolution
0026 )
0027 
0028 import copy
0029 OutALCARECOTkAlCosmics = copy.deepcopy(OutALCARECOTkAlCosmics_noDrop)
0030 OutALCARECOTkAlCosmics.outputCommands.insert(0, "drop *")