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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
|
# last update on $Date: 2010/09/10 13:33:44 $ by $Author: mussgill $
import FWCore.ParameterSet.Config as cms
process = cms.Process("Alignment")
process.options = cms.untracked.PSet(
Rethrow = cms.untracked.vstring("ProductNotFound") # do not accept this exception
)
# initialize MessageLogger
process.load("FWCore.MessageService.MessageLogger_cfi")
process.MessageLogger.files.alignment = cms.untracked.PSet(
DEBUG = cms.untracked.PSet(
limit = cms.untracked.int32(-1)
),
INFO = cms.untracked.PSet(
limit = cms.untracked.int32(5),
reportEvery = cms.untracked.int32(5)
),
WARNING = cms.untracked.PSet(
limit = cms.untracked.int32(10)
),
ERROR = cms.untracked.PSet(
limit = cms.untracked.int32(-1)
),
Alignment = cms.untracked.PSet(
limit = cms.untracked.int32(-1),
reportEvery = cms.untracked.int32(1)
),
enableStatistics = cms.untracked.bool(True)
)
process.MessageLogger.cerr.enable = cms.untracked.bool(False)
# initialize magnetic field
process.load("Configuration.StandardSequences.MagneticField_cff")
#process.load("Configuration.StandardSequences.MagneticField_0T_cff")
# geometry
process.load("Configuration.Geometry.GeometryRecoDB_cff")
#del process.CaloTopologyBuilder etc. to speed up...???
process.load("Configuration.StandardSequences.FrontierConditions_GlobalTag_cff")
process.GlobalTag.globaltag = 'MC_310_V1::All' # take your favourite
# # if alignment constants not from global tag, add this
#from CondCore.DBCommon.CondDBSetup_cfi import *
#process.trackerAlignment = cms.ESSource(
# "PoolDBESSource",
# CondDBSetup,
# connect = cms.string("frontier://FrontierProd/CMS_COND_31X_ALIGNMENT"),
## connect = cms.string("frontier://FrontierPrep/CMS_COND_ALIGNMENT"),
# toGet = cms.VPSet(cms.PSet(record = cms.string("TrackerAlignmentRcd"),
# tag = cms.string("TrackerIdealGeometry210_mc")
# ),
# cms.PSet(record = cms.string("TrackerAlignmentErrorExtendedRcd"),
# tag = cms.string("TrackerIdealGeometryErrors210_mc")
# )
# )
# )
#process.es_prefer_trackerAlignment = cms.ESPrefer("PoolDBESSource", "trackerAlignment")
## might help for double es_prefer: del process.es_prefer_GlobalTag
process.load("RecoVertex.BeamSpotProducer.BeamSpot_cfi")
# track selection for alignment
process.load("Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi")
process.AlignmentTrackSelector.src = 'ALCARECOTkAlZMuMu' #'ALCARECOTkAlMuonIsolated' #MinBias' #'generalTracks' # adjust to input file
process.AlignmentTrackSelector.ptMin = 8.
process.AlignmentTrackSelector.etaMin = -5.
process.AlignmentTrackSelector.etaMax = 5.
process.AlignmentTrackSelector.nHitMin = 9
process.AlignmentTrackSelector.chi2nMax = 50.
# some further possibilities
#process.AlignmentTrackSelector.applyNHighestPt = True
#process.AlignmentTrackSelector.nHighestPt = 2
#process.AlignmentTrackSelector.applyChargeCheck = True
#process.AlignmentTrackSelector.minHitChargeStrip = 50.
# needs RECO files:
#process.AlignmentTrackSelector.applyIsolationCut = True
#process.AlignmentTrackSelector.minHitIsolation = 0.8
# refitting
process.load("RecoTracker.TrackProducer.TrackRefitters_cff")
# In the following use
# TrackRefitter (normal tracks), TrackRefitterP5 (cosmics) or TrackRefitterBHM (beam halo)
process.TrackRefitter.src = 'AlignmentTrackSelector'
process.TrackRefitter.TrajectoryInEvent = True
# beam halo propagation needs larger phi changes going from one TEC to another
#process.MaterialPropagator.MaxDPhi = 1000.
# the following for refitting with analytical propagator (maybe for CRUZET?)
#process.load("TrackingTools.KalmanUpdators.KFUpdatorESProducer_cfi")
#process.load("TrackingTools.KalmanUpdators.Chi2MeasurementEstimatorESProducer_cfi")
#process.load("TrackingTools.TrackFitters.KFTrajectoryFitter_cfi")
#process.load("TrackingTools.TrackFitters.KFTrajectorySmoother_cfi")
#process.load("TrackingTools.TrackFitters.KFFittingSmoother_cfi")
#process.load("TrackingTools.GeomPropagators.AnalyticalPropagator_cfi")
#process.load("TrackingTools.KalmanUpdators.Chi2MeasurementEstimatorESProducer_cfi")
#process.TrackRefitter.Propagator = "AnalyticalPropagator"
#process.KFTrajectoryFitter.Propagator = "AnalyticalPropagator"
#process.KFTrajectorySmoother.Propagator = "AnalyticalPropagator"
## Not to loose hits/tracks, we might want to open the allowed chi^2 contribution for single hits:
##process.Chi2MeasurementEstimator.MaxChi2 = 50. # untested, default 30
#process.load("RecoLocalTracker.SiStripRecHitConverter.StripCPEfromTrackAngle_cfi")
#process.load("RecoLocalTracker.SiStripRecHitConverter.SiStripRecHitMatcher_cfi")
#process.load("RecoTracker.TransientTrackingRecHit.TransientTrackingRecHitBuilder_cfi")
## end refitting with analytical propagator
# Alignment producer
process.load("Alignment.CommonAlignmentProducer.AlignmentProducer_cff")
process.AlignmentProducer.ParameterBuilder.parameterTypes = [
#'BeamSpotSelector,BeamSpot',
'SelectorRigid,RigidBody',
#'SelectorBowed,BowedSurface', # for full fletched alignment
#'Selector2Bowed,TwoBowedSurfaces' # for full fletched alignment
]
process.AlignmentProducer.ParameterBuilder.BeamSpotSelector = cms.PSet(
alignParams = cms.vstring(
'ExtrasBeamSpot,ffff'
)
)
process.AlignmentProducer.ParameterBuilder.SelectorRigid = cms.PSet(
alignParams = cms.vstring(
# very simple scenario for testing
# 6 parameters for larger structures
# 'PixelHalfBarrels,ffffff',
# 'PXEndCaps,111111',
# 'TrackerTOBHalfBarrel,111111',
# 'TrackerTIBHalfBarrel,111111',
# 'TrackerTECEndcap,ffffff',
# 'TrackerTIDEndcap,ffffff'
#
# for hierarchical approach
'PixelHalfBarrels,111111',
'PXEndCaps,111111',
'TrackerTIBHalfBarrel,111111',
'TrackerTIDEndcap,111111',
'TrackerTOBHalfBarrel,111111',
'TrackerTECEndcap,111111'
# full fletched hierarchical with rigid body only:
# ,'TrackerTPBModule,111111',
# 'TrackerTPEModule,111001',
# 'TrackerTIBModuleUnit,101111',
# 'TrackerTIDModuleUnit,101111',
# 'TrackerTECModuleUnit,101111,tecSingleSens'
# ,'TrackerTOBModuleUnit,101111',
)
)
process.AlignmentProducer.ParameterBuilder.SelectorBowed = cms.PSet(
alignParams = cms.vstring(
'TrackerTPBModule,111111 111',
'TrackerTPEModule,111001 000', # could do with rigid body...
'TrackerTIBModuleUnit,101111 111',
'TrackerTIDModuleUnit,101111 111',
'TrackerTECModuleUnit,101111 111,tecSingleSens'
),
tecSingleSens = cms.PSet(tecDetId = cms.PSet(ringRanges = cms.vint32(1,4)))
)
process.AlignmentProducer.ParameterBuilder.Selector2Bowed = cms.PSet(
alignParams = cms.vstring(
'TrackerTOBModuleUnit,101111 111 101111 111',
'TrackerTECModuleUnit,101111 111 101111 111,tecDoubleSens'
),
tecDoubleSens = cms.PSet(tecDetId = cms.PSet(ringRanges = cms.vint32(5,7)))
)
#process.AlignmentProducer.doMuon = True # to align muon system
process.AlignmentProducer.doMisalignmentScenario = False #True
# If the above is true, you might want to choose the scenario:
#from Alignment.TrackerAlignment.Scenarios_cff import *
#process.AlignmentProducer.MisalignmentScenario = TrackerSurveyLASOnlyScenario
process.AlignmentProducer.applyDbAlignment = False # neither globalTag nor trackerAlignment
# assign by reference (i.e. could change MillePedeAlignmentAlgorithm as well):
process.AlignmentProducer.algoConfig = process.MillePedeAlignmentAlgorithm
#from Alignment.MillePedeAlignmentAlgorithm.PresigmaScenarios_cff import *
#process.AlignmentProducer.algoConfig.pedeSteerer.Presigmas.extend(TrackerShortTermPresigmas.Presigmas)
process.AlignmentProducer.algoConfig.mode = 'full' # 'pede' # 'mille' # 'pedeSteer'
process.AlignmentProducer.algoConfig.binaryFile = 'milleBinaryISN.dat'
process.AlignmentProducer.algoConfig.treeFile = 'treeFileISN.root'
#process.AlignmentProducer.algoConfig.TrajectoryFactory = process.TwoBodyDecayTrajectoryFactory # BzeroReferenceTrajectoryFactory
#process.AlignmentProducer.algoConfig.TrajectoryFactory.PropagationDirection = 'oppositeToMomentum'
process.AlignmentProducer.algoConfig.TrajectoryFactory.MaterialEffects = 'BrokenLinesCoarse' #'BreakPoints' #'Combined', ## or "MultipleScattering" or "EnergyLoss" or "None"
process.AlignmentProducer.algoConfig.TrajectoryFactory.UseBeamSpot = False
# ...OR TwoBodyDecayTrajectoryFactory OR ...
#process.AlignmentProducer.algoConfig.max2Dcorrelation = 2. # to switch off
##default is sparsGMRES <method> n(iter) Delta(F)
#process.AlignmentProducer.algoConfig.pedeSteerer.method = 'inversion 9 0.8'
#process.AlignmentProducer.algoConfig.pedeSteerer.options = cms.vstring(
# 'entries 100',
# 'chisqcut 20.0 4.5' # ,'outlierdownweighting 3' #,'dwfractioncut 0.1'
#)
#process.AlignmentProducer.algoConfig.pedeSteerer.pedeCommand = '/afs/cern.ch/user/f/flucke/cms/pede/MillepedeII/pede_1GB'
process.source = cms.Source("PoolSource",
skipEvents = cms.untracked.uint32(0),
fileNames = cms.untracked.vstring(
#'/store/relval/CMSSW_3_0_0_pre2/RelValTTbar/ALCARECO/STARTUP_V7_StreamALCARECOTkAlMinBias_v2/0001/580E7A0F-1DB4-DD11-8AA8-001617DBD224.root'
# <== is a relval from CMSSW_3_0_0_pre2.
#"file:aFile.root" #"rfio:/castor/cern.ch/cms/store/..."
#'/store/mc/Summer09/MinBias/ALCARECO/MC_31X_V3_StreamTkAlMinBias-v2/0005/C2F77DDA-0292-DE11-BD6B-001731A2870D.root'
# <== from /MinBias/Summer09-MC_31X_V3_StreamTkAlMinBias-v2/ALCARECO
'/store/mc/Summer09/Zmumu/ALCARECO/MC_31X_V3_7TeV_StreamTkAlZMuMu-v1/0000/FACBA5D7-B1A2-DE11-AE4A-001E4F3F28D8.root'
# <== /Zmumu/Summer09-MC_31X_V3_7TeV_StreamTkAlZMuMu-v1/ALCARECO
#'file:/tmp/flucke/Summer09_Zmumu_ALCARECO_MC_31X_V3_7TeV_StreamTkAlZMuMu-v1_0000_FACBA5D7-B1A2-DE11-AE4A-001E4F3F28D8.root'
)
)
process.maxEvents = cms.untracked.PSet(
input = cms.untracked.int32(100)
)
process.p = cms.Path(process.offlineBeamSpot*process.AlignmentTrackSelector*process.TrackRefitter)
# overwrite for pede job:
#process.source = cms.Source("EmptySource")
#process.dump = cms.EDAnalyzer("EventContentAnalyzer")
#process.p = cms.Path(process.dump)
# all fits/refits with 'StripCPEgeometric' - but take about TTRHBuilder used ibn (re)fit
# (works until 'StripCPEgeometric' gets default...)
#process.load("RecoLocalTracker.SiStripRecHitConverter.StripCPEgeometric_cfi")
#process.TTRHBuilderAngleAndTemplate.StripCPE = 'StripCPEgeometric'
#--- SAVE ALIGNMENT CONSTANTS TO DB --------------------------------
# Default in MPS is saving as alignment_MP.db. Uncomment next line not to save them.
# For a standalone (non-MPS) run, uncomment also the PoolDBOutputService part.
#process.AlignmentProducer.saveToDB = True
#process.AlignmentProducer.saveDeformationsToDB = True
##process.AlignmentProducer.saveApeToDB = True # no sense: Millepede does not set it!
#from CondCore.DBCommon.CondDBSetup_cfi import *
#process.PoolDBOutputService = cms.Service(
# "PoolDBOutputService",
# CondDBSetup,
# timetype = cms.untracked.string('runnumber'),
# connect = cms.string('sqlite_file:TkAlignment.db'),
# toPut = cms.VPSet(cms.PSet(
# record = cms.string('TrackerAlignmentRcd'),
# tag = cms.string('testTagAlignment')
# ),
# # cms.PSet(
# # record = cms.string('TrackerAlignmentErrorExtendedRcd'),
# # tag = cms.string('testTagAPE') # needed is saveApeToDB = True
# #),
# cms.PSet(
# record = cms.string('TrackerSurfaceDeformationRcd'),
# tag = cms.string('testTagDeformation')
# )
# )
# )
# MPS needs next line as placeholder for pede _cfg.py:
#MILLEPEDEBLOCK
|