CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ALCARECOTkAlCosmics_Output_cff.py
Go to the documentation of this file.
1 # Author : Gero Flucke
2 # Date : July 19th, 2007
3 # last update: $Date: 2011/02/09 09:10:11 $ by $Author: cerminar $
4 
5 import FWCore.ParameterSet.Config as cms
6 
7 # AlCaReco for track based alignment using Cosmic muon events
8 OutALCARECOTkAlCosmics_noDrop = cms.PSet(
9  SelectEvents = cms.untracked.PSet(
10  SelectEvents = cms.vstring('pathALCARECOTkAlCosmicsCTF',
11  'pathALCARECOTkAlCosmicsCosmicTF',
12  'pathALCARECOTkAlCosmicsRegional')
13  ),
14  outputCommands = cms.untracked.vstring(
15 # 'keep *_ALCARECOTkAlCosmics*_*_*', # keeps also 0T ones if in same job
16  'keep *_ALCARECOTkAlCosmicsCTF_*_*',
17  'keep *_ALCARECOTkAlCosmicsCosmicTF_*_*',
18  'keep *_ALCARECOTkAlCosmicsRegional_*_*',
19  'keep siStripDigis_DetIdCollection_*_*',
20  'keep L1AcceptBunchCrossings_*_*_*',
21  'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*',
22  'keep *_TriggerResults_*_*',
23  'keep DcsStatuss_scalersRawToDigi_*_*',
24  'keep Si*Cluster*_si*Clusters_*_*', # for cosmics keep original clusters
25  'keep recoMuons_muons1Leg_*_*') # save muons as timing info is needed for BP corrections in deconvolution
26 )
27 
28 import copy
29 OutALCARECOTkAlCosmics = copy.deepcopy(OutALCARECOTkAlCosmics_noDrop)
30 OutALCARECOTkAlCosmics.outputCommands.insert(0, "drop *")