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 155 of file L1CaloThresholdMapping.py.

155 def get_threshold_cut(threshold_type,threshold_val):
156  # To support more generality in topo alg configs
157  if threshold_val == 0:
158  return 0
159  # For jJ thresholds, there are different maps for:
160  # - jJ: 0-3.2 in eta
161  # - CjJ: 0-2.X (X=1,3,5) in eta
162  # - FjJ: 3.0-4.9 in eta
163  # - AjJ: 0-4.9 in eta uses the default range (L1Topo triggers)
164  _threshold_type = threshold_type
165  if threshold_type == 'AjJ':
166  _threshold_type = 'jJ'
167  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:155