CMS 3D CMS Logo

ALCARECOTkAlMinBias_Output_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # AlCaReco for track based alignment using MinBias events
4 OutALCARECOTkAlMinBias_noDrop = cms.PSet(
5  SelectEvents = cms.untracked.PSet(
6  SelectEvents = cms.vstring('pathALCARECOTkAlMinBias')
7  ),
8  outputCommands = cms.untracked.vstring(
9  'keep recoTracks_ALCARECOTkAlMinBias_*_*',
10  'keep recoTrackExtras_ALCARECOTkAlMinBias_*_*',
11  'keep TrackingRecHitsOwned_ALCARECOTkAlMinBias_*_*',
12  'keep SiPixelClusteredmNewDetSetVector_ALCARECOTkAlMinBias_*_*',
13  'keep SiStripClusteredmNewDetSetVector_ALCARECOTkAlMinBias_*_*',
14  'keep L1AcceptBunchCrossings_*_*_*',
15  'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*',
16  'keep *_TriggerResults_*_*',
17  'keep DcsStatuss_scalersRawToDigi_*_*',
18  'keep *_offlinePrimaryVertices_*_*',
19  'keep *_offlineBeamSpot_*_*')
20 )
21 
22 # in Run3, SCAL digis replaced by onlineMetaDataDigis
23 import copy
24 _run3_common_removedCommands = OutALCARECOTkAlMinBias_noDrop.outputCommands.copy()
25 _run3_common_removedCommands.remove('keep DcsStatuss_scalersRawToDigi_*_*')
26 
27 _run3_common_extraCommands = ['keep DCSRecord_onlineMetaDataDigis_*_*',
28  'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*']
29 
30 from Configuration.Eras.Modifier_run3_common_cff import run3_common
31 run3_common.toModify(OutALCARECOTkAlMinBias_noDrop, outputCommands = _run3_common_removedCommands + _run3_common_extraCommands)
32 
33 # in Phase2, remove the SiStrip clusters and keep the OT ones instead
34 _phase2_common_removedCommands = OutALCARECOTkAlMinBias_noDrop.outputCommands.copy()
35 _phase2_common_removedCommands.remove('keep SiStripClusteredmNewDetSetVector_ALCARECOTkAlMinBias_*_*')
36 
37 _phase2_common_extraCommands = ['keep Phase2TrackerCluster1DedmNewDetSetVector_ALCARECOTkAlMinBias_*_*']
38 
39 from Configuration.Eras.Modifier_phase2_common_cff import phase2_common
40 phase2_common.toModify(OutALCARECOTkAlMinBias_noDrop, outputCommands = _phase2_common_removedCommands + _phase2_common_extraCommands )
41 
42 OutALCARECOTkAlMinBias = OutALCARECOTkAlMinBias_noDrop.clone()
43 OutALCARECOTkAlMinBias.outputCommands.insert(0, "drop *")