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

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