Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing Errors due to LA in PixelPhase1 with proper upgrade GT for 2017 design #10432

Merged
merged 4 commits into from Jul 29, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion Configuration/AlCa/python/autoCond.py
Expand Up @@ -26,7 +26,7 @@
# GlobalTag for Run2 HLT: it points to the online GT
'run2_hlt' : '75X_dataRun2_HLT_v2',
# GlobalTag for MC production with perfectly aligned and calibrated detector for Phase1 2017
'phase1_2017_design' : 'DES17_70_V2', # placeholder (GT not meant for standard RelVal)
'phase1_2017_design' : '75X_upgrade2017_design_v1',
# GlobalTag for MC production with perfectly aligned and calibrated detector for Phase1 2019
'phase1_2019_design' : 'DES19_70_V2', # placeholder (GT not meant for standard RelVal)
# GlobalTag for MC production with perfectly aligned and calibrated detector for Phase2
Expand Down
Expand Up @@ -186,7 +186,7 @@ def customise_Reco(process,pileup):
#use with latest pixel geometry
process.ClusterShapeHitFilterESProducer.PixelShapeFile = cms.string('RecoPixelVertexing/PixelLowPtUtilities/data/pixelShape_Phase1Tk.par')
# Need this line to stop error about missing siPixelDigis.
process.MeasurementTracker.inactivePixelDetectorLabels = cms.VInputTag()
process.MeasurementTrackerEvent.inactivePixelDetectorLabels = cms.VInputTag()

# new layer list (3/4 pixel seeding) in InitialStep and pixelTracks
process.PixelLayerTriplets.layerList = cms.vstring( 'BPix1+BPix2+BPix3',
Expand Down Expand Up @@ -364,7 +364,8 @@ def customise_Reco(process,pileup):
process.pixelTracks.FilterPSet.chi2 = cms.double(50.0)
process.pixelTracks.FilterPSet.tipMax = cms.double(0.05)
process.pixelTracks.RegionFactoryPSet.RegionPSet.originRadius = cms.double(0.02)


process.templates.DoLorentz=False
process.templates.LoadTemplatesFromDB = cms.bool(False)
process.PixelCPEGenericESProducer.useLAWidthFromDB = cms.bool(False)

return process