Skip to content
Snippets Groups Projects
Commit cf4c043b authored by Robin Newhouse's avatar Robin Newhouse :boom:
Browse files

Turn off large radius tracking in special runs (cosmics etc.)

parent a0bb1b41
No related branches found
No related tags found
No related merge requests found
......@@ -1261,6 +1261,7 @@ class InDetJobProperties(JobPropertyContainer):
self.checkThenSet(self.doTRTPhaseCalculation , False)
self.checkThenSet(self.doTRTStandalone , True)
self.checkThenSet(self.doForwardTracks , False)
self.checkThenSet(self.doR3LargeD0 , False)
self.checkThenSet(self.doBackTracking , False)
self.checkThenSet(self.doVertexFinding , False)
self.checkThenSet(self.doV0Finder , False)
......@@ -1281,6 +1282,7 @@ class InDetJobProperties(JobPropertyContainer):
self.checkThenSet(self.doBeamHalo , False)
self.checkThenSet(self.doBackTracking , False)
self.checkThenSet(self.doForwardTracks , False)
self.checkThenSet(self.doR3LargeD0 , False)
self.checkThenSet(self.doTRTStandalone , True ) # *ME* this is different than 15.4.0 and before
self.checkThenSet(self.doTRTPhaseCalculation , True )
self.checkThenSet(self.doParticleCreation , True )
......@@ -1315,6 +1317,7 @@ class InDetJobProperties(JobPropertyContainer):
self.checkThenSet(self.doTrackSegmentsSCT , False)
self.checkThenSet(self.doTrackSegmentsTRT , False)
self.checkThenSet(self.doForwardTracks , False)
self.checkThenSet(self.doR3LargeD0 , False)
self.checkThenSet(self.doBeamGas , False)
self.checkThenSet(self.doBeamHalo , False)
self.checkThenSet(self.doVertexFinding , True)
......@@ -1347,6 +1350,7 @@ class InDetJobProperties(JobPropertyContainer):
self.checkThenSet(self.doBackTracking , False)
self.checkThenSet(self.doTRTStandalone , False)
self.checkThenSet(self.doForwardTracks , False)
self.checkThenSet(self.doR3LargeD0 , False)
self.checkThenSet(self.doVertexFinding , True)
self.checkThenSet(self.primaryVertexSetup , "IterativeFinding")
self.checkThenSet(self.primaryVertexCutSetup , "SLHC")
......@@ -1403,6 +1407,7 @@ class InDetJobProperties(JobPropertyContainer):
self.checkThenSet(self.doBackTracking , False)
self.checkThenSet(self.doTRTStandalone , False)
self.checkThenSet(self.doForwardTracks , False)
self.checkThenSet(self.doR3LargeD0 , False)
self.checkThenSet(self.doVertexFinding , True)
self.checkThenSet(self.primaryVertexSetup , "IterativeFinding")
self.checkThenSet(self.primaryVertexCutSetup , "Offline")
......@@ -1430,6 +1435,7 @@ class InDetJobProperties(JobPropertyContainer):
self.checkThenSet(self.doBackTracking , False)
self.checkThenSet(self.doTRTStandalone , False)
self.checkThenSet(self.doForwardTracks , False)
self.checkThenSet(self.doR3LargeD0 , False)
self.checkThenSet(self.doVertexFinding , True)
self.checkThenSet(self.primaryVertexSetup , "IterativeFinding")
self.checkThenSet(self.primaryVertexCutSetup , "Offline")
......@@ -1468,6 +1474,7 @@ class InDetJobProperties(JobPropertyContainer):
self.checkThenSet(self.doBackTracking , False)
self.checkThenSet(self.doTRTStandalone , False)
self.checkThenSet(self.doForwardTracks , False)
self.checkThenSet(self.doR3LargeD0 , False)
self.checkThenSet(self.doVertexFinding , True)
self.checkThenSet(self.primaryVertexSetup , "IterativeFinding")
self.checkThenSet(self.primaryVertexCutSetup , "Offline")
......@@ -1501,6 +1508,7 @@ class InDetJobProperties(JobPropertyContainer):
self.checkThenSet(self.doVeryLowPt , False )
self.checkThenSet(self.doSLHCConversionFinding, False)
self.checkThenSet(self.doForwardTracks , False )
self.checkThenSet(self.doR3LargeD0 , False )
self.checkThenSet(self.doBeamGas , False )
self.checkThenSet(self.doBeamHalo , False )
self.checkThenSet(self.doBackTracking , False )
......
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