Skip to content
Snippets Groups Projects
Commit 8f14ad21 authored by Mark Sutton's avatar Mark Sutton Committed by Frank Winklmeier
Browse files

Fix doublet radius cut and seed width for the fullscan tracking

This fixes the maximum radius for seeds in the FTF which is larger for the fullscan instance, than the beamspot instance.
parent b176e9c3
No related branches found
No related tags found
No related merge requests found
......@@ -153,11 +153,18 @@ class InDetTrigSliceSettingsDB:
for i in _slices:
drdoubletmax[i] = 270
seedradbinwidth[i] = 2
drdoubletmax['beamSpot'] = 200
drdoubletmax['beamSpot'] = 200
seedradbinwidth['beamSpot'] = 10
drdoubletmax['fullScan'] = 200
seedradbinwidth['fullScan'] = 10
self.db['dRdoubletMax'] = drdoubletmax
self.db['seedRadBinWidth'] = seedradbinwidth
#etaHalfWidth
etahalf = {
'electron' : 0.1,
......
......@@ -217,6 +217,8 @@ class _Tracking_fullScan( _Settings ):
self._etaHalfWidth = 3.
self._phiHalfWidth = 3.14159
self._doTRT = False
self._dRdoubletMax = 200
self._seedRadBinWidth = 10
class _Tracking_minBias( _Settings ):
def __init__( self ):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment