1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# last update: $Date: 2011/02/09 09:10:11 $ by $Author: cerminar $
import FWCore.ParameterSet.Config as cms
# AlCaReco for track based alignment using Cosmic muon events
OutALCARECOTkAlCosmics0T_noDrop = cms.PSet(
SelectEvents = cms.untracked.PSet(
SelectEvents = cms.vstring('pathALCARECOTkAlCosmicsCTF0T',
'pathALCARECOTkAlCosmicsCosmicTF0T',
'pathALCARECOTkAlCosmicsRegional0T',
'pathALCARECOTkAlCosmicsDuringCollisions0T'
)
),
outputCommands = cms.untracked.vstring(
#'keep *_ALCARECOTkAlCosmics*0T_*_*',
'keep *_ALCARECOTkAlCosmicsCTF0T_*_*',
'keep *_ALCARECOTkAlCosmicsCosmicTF0T_*_*',
'keep *_ALCARECOTkAlCosmicsRegional0T_*_*',
'keep *_ALCARECOTkAlCosmicsDuringCollisions0T_*_*',
'keep siStripDigis_DetIdCollection_*_*',
'keep L1AcceptBunchCrossings_*_*_*',
'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*',
'keep *_TriggerResults_*_*',
'keep DcsStatuss_scalersRawToDigi_*_*',
#'keep Si*Cluster*_si*Clusters_*_*', # for cosmics keep original clusters
'keep SiPixelCluster*_siPixelClusters_*_*',
'keep SiStripCluster*_siStripClusters_*_*',
'keep recoMuons_muons1Leg_*_*') # save muons as timing info is needed for BP corrections in deconvolution
)
import copy
OutALCARECOTkAlCosmics0T = copy.deepcopy(OutALCARECOTkAlCosmics0T_noDrop)
OutALCARECOTkAlCosmics0T.outputCommands.insert(0, "drop *")
|