ATLAS Offline Software
Functions
FPGAClusterSortingConfig Namespace Reference

Functions

def FPGAClusterSortingAlgCfg (flags, name="FPGAClusterSortingAlg", **kwargs)
 
def FPGAClusterDataVectorSortingAlgCfg (flags, name="FPGAClusterDataVectorSortingAlg", **kwargs)
 

Function Documentation

◆ FPGAClusterDataVectorSortingAlgCfg()

def FPGAClusterSortingConfig.FPGAClusterDataVectorSortingAlgCfg (   flags,
  name = "FPGAClusterDataVectorSortingAlg",
**  kwargs 
)
Return a ComponentAccumulator configured for FPGAClusterDataVectorSortingAlg

Definition at line 23 of file FPGAClusterSortingConfig.py.

23 def FPGAClusterDataVectorSortingAlgCfg(flags, name="FPGAClusterDataVectorSortingAlg", **kwargs):
24  """Return a ComponentAccumulator configured for FPGAClusterDataVectorSortingAlg"""
25  acc = ComponentAccumulator()
26 
27  kwargs.setdefault('xAODPixelClusterContainer', 'FPGAPixelClusters')
28  kwargs.setdefault('xAODStripClusterContainer', 'FPGAStripClusters')
29  kwargs.setdefault('sortedxAODPixelClusterContainer', 'SortedFPGAPixelClusters')
30  kwargs.setdefault('sortedxAODStripClusterContainer', 'SortedFPGAStripClusters')
31 
32  ClustrerSorting = CompFactory.FPGAClusterDataVectorSortingAlg(name,**kwargs)
33 
34  # Add the algorithm to the accumulator
35  acc.addEventAlgo(ClustrerSorting)
36 
37  return acc

◆ FPGAClusterSortingAlgCfg()

def FPGAClusterSortingConfig.FPGAClusterSortingAlgCfg (   flags,
  name = "FPGAClusterSortingAlg",
**  kwargs 
)
Return a ComponentAccumulator configured for FPGAClusterSorting

Definition at line 6 of file FPGAClusterSortingConfig.py.

6 def FPGAClusterSortingAlgCfg(flags, name="FPGAClusterSortingAlg", **kwargs):
7  """Return a ComponentAccumulator configured for FPGAClusterSorting"""
9 
10  kwargs.setdefault('xAODPixelClusterContainer', 'FPGAPixelClusters')
11  kwargs.setdefault('xAODStripClusterContainer', 'FPGAStripClusters')
12  kwargs.setdefault('sortedxAODPixelClusterContainer', 'SortedFPGAPixelClusters')
13  kwargs.setdefault('sortedxAODStripClusterContainer', 'SortedFPGAStripClusters')
14 
15  ClustrerSorting = CompFactory.FPGAClusterSortingAlg(name,**kwargs)
16 
17  # Add the algorithm to the accumulator
18  acc.addEventAlgo(ClustrerSorting)
19 
20  return acc
21 
22 
python.JetAnalysisCommon.ComponentAccumulator
ComponentAccumulator
Definition: JetAnalysisCommon.py:302
FPGAClusterSortingConfig.FPGAClusterSortingAlgCfg
def FPGAClusterSortingAlgCfg(flags, name="FPGAClusterSortingAlg", **kwargs)
Definition: FPGAClusterSortingConfig.py:6
FPGAClusterSortingConfig.FPGAClusterDataVectorSortingAlgCfg
def FPGAClusterDataVectorSortingAlgCfg(flags, name="FPGAClusterDataVectorSortingAlg", **kwargs)
Definition: FPGAClusterSortingConfig.py:23