ATLAS Offline Software
Functions | Variables
python.L1.Config.L1CaloThresholdMapping Namespace Reference

Functions

def get_threshold_cut (threshold_type, threshold_val)
 

Variables

 threshold_mapping
 

Function Documentation

◆ get_threshold_cut()

def python.L1.Config.L1CaloThresholdMapping.get_threshold_cut (   threshold_type,
  threshold_val 
)

Definition at line 175 of file L1CaloThresholdMapping.py.

175 def get_threshold_cut(threshold_type,threshold_val):
176  # To support more generality in topo alg configs
177  if threshold_val == 0:
178  return 0
179  # For jJ thresholds, there are different maps for:
180  # - jJ: 0-3.2 in eta
181  # - CjJ: 0-2.X (X=1,3,5) in eta
182  # - FjJ: 3.0-4.9 in eta
183  # - AjJ: 0-4.9 in eta uses the default range (L1Topo triggers)
184  _threshold_type = threshold_type
185  if threshold_type == 'AjJ':
186  _threshold_type = 'jJ'
187  return threshold_mapping[_threshold_type][threshold_val]

Variable Documentation

◆ threshold_mapping

python.L1.Config.L1CaloThresholdMapping.threshold_mapping

Definition at line 11 of file L1CaloThresholdMapping.py.

python.L1.Config.L1CaloThresholdMapping.get_threshold_cut
def get_threshold_cut(threshold_type, threshold_val)
Definition: L1CaloThresholdMapping.py:175