Skip to content
Snippets Groups Projects
Commit 8399a5ee authored by Attila Krasznahorkay's avatar Attila Krasznahorkay
Browse files

Reduced the default max bunch spacing configuration of all tools to 75 ns.

In order to (hopefully) support all Run 2 configurations out of the box.


Former-commit-id: a10647fd67bd211d93c3b8aa490ad42fa44f2911
parent 7de44fb3
No related branches found
No related tags found
No related merge requests found
...@@ -120,7 +120,7 @@ def TrigConfBunchCrossingTool(): ...@@ -120,7 +120,7 @@ def TrigConfBunchCrossingTool():
__tool = Trig__TrigConfBunchCrossingTool( __defaultToolName ) __tool = Trig__TrigConfBunchCrossingTool( __defaultToolName )
# Create a default configuration for it: # Create a default configuration for it:
__tool.MaxBunchSpacing = 150 __tool.MaxBunchSpacing = 75
__tool.FrontLength = 300 __tool.FrontLength = 300
__tool.TailLength = 300 __tool.TailLength = 300
# __tool.FilledBunchNames = [ "Paired", "Filled" ] # __tool.FilledBunchNames = [ "Paired", "Filled" ]
...@@ -187,7 +187,7 @@ def MCBunchCrossingTool(): ...@@ -187,7 +187,7 @@ def MCBunchCrossingTool():
__tool = Trig__MCBunchCrossingTool( __defaultToolName ) __tool = Trig__MCBunchCrossingTool( __defaultToolName )
# Create a default configuration for it: # Create a default configuration for it:
__tool.MaxBunchSpacing = 150 __tool.MaxBunchSpacing = 75
__tool.FrontLength = 300 __tool.FrontLength = 300
__tool.TailLength = 300 __tool.TailLength = 300
__tool.MinBunchIntensity = 0.1 __tool.MinBunchIntensity = 0.1
...@@ -252,7 +252,7 @@ def LHCBunchCrossingTool(): ...@@ -252,7 +252,7 @@ def LHCBunchCrossingTool():
__tool = Trig__LHCBunchCrossingTool( __defaultToolName ) __tool = Trig__LHCBunchCrossingTool( __defaultToolName )
# Create a default configuration for it: # Create a default configuration for it:
__tool.MaxBunchSpacing = 150 __tool.MaxBunchSpacing = 75
__tool.FrontLength = 300 __tool.FrontLength = 300
__tool.TailLength = 300 __tool.TailLength = 300
__tool.IntensityChannel = 1 __tool.IntensityChannel = 1
...@@ -309,7 +309,7 @@ def WebBunchCrossingTool(): ...@@ -309,7 +309,7 @@ def WebBunchCrossingTool():
__tool = Trig__WebBunchCrossingTool( __defaultToolName ) __tool = Trig__WebBunchCrossingTool( __defaultToolName )
# Create a default configuration for it: # Create a default configuration for it:
__tool.MaxBunchSpacing = 150 __tool.MaxBunchSpacing = 75
__tool.FrontLength = 300 __tool.FrontLength = 300
__tool.TailLength = 300 __tool.TailLength = 300
__logger.info( "Set the default values for the WebBunchCrossingTool configuration" ) __logger.info( "Set the default values for the WebBunchCrossingTool configuration" )
...@@ -350,7 +350,7 @@ def StaticBunchCrossingTool(): ...@@ -350,7 +350,7 @@ def StaticBunchCrossingTool():
__tool = Trig__StaticBunchCrossingTool( __defaultToolName ) __tool = Trig__StaticBunchCrossingTool( __defaultToolName )
# Create a default configuration for it: # Create a default configuration for it:
__tool.MaxBunchSpacing = 150 __tool.MaxBunchSpacing = 75
__tool.FrontLength = 300 __tool.FrontLength = 300
__tool.TailLength = 300 __tool.TailLength = 300
...@@ -388,7 +388,7 @@ def D3PDBunchCrossingTool(): ...@@ -388,7 +388,7 @@ def D3PDBunchCrossingTool():
__tool = Trig__D3PDBunchCrossingTool( __defaultToolName ) __tool = Trig__D3PDBunchCrossingTool( __defaultToolName )
# Create a default configuration for it: # Create a default configuration for it:
__tool.MaxBunchSpacing = 150 __tool.MaxBunchSpacing = 75
__tool.FrontLength = 300 __tool.FrontLength = 300
__tool.TailLength = 300 __tool.TailLength = 300
......
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