ATLAS Offline Software
Loading...
Searching...
No Matches
egammaLargeClusterMakerAlgConfig Namespace Reference

Functions

 egammaLargeClusterMakerAlgCfg (flags, name="egammaLargeClusterMaker", **kwargs)

Variables

str __author__ = "Jovan Mitrevski"

Detailed Description

 Configure egammaLargeClusterMaker which chooses cells to store in the AOD

Function Documentation

◆ egammaLargeClusterMakerAlgCfg()

egammaLargeClusterMakerAlgConfig.egammaLargeClusterMakerAlgCfg ( flags,
name = "egammaLargeClusterMaker",
** kwargs )

Definition at line 16 of file egammaLargeClusterMakerAlgConfig.py.

19 **kwargs):
20
21 acc = ComponentAccumulator()
22
23 kwargs.setdefault("SaveUncalibratedSignalState", False)
24 kwargs.setdefault("ClustersOutputName",
25 flags.Egamma.Keys.Output.EgammaLargeClusters)
26
27 if "ClusterMakerTools" not in kwargs:
28 tool = egammaLargeClusterMakerCfg(flags)
29 kwargs["ClusterMakerTools"] = [acc.popToolsAndMerge(tool)]
30
31 if "ClusterCorrectionTools" not in kwargs:
32 tools = make_CaloSwCorrectionsCfg(
33 flags,
34 "ele7_11",
35 suffix="Nocorr",
36 version="none",
37 cells_name=flags.Egamma.Keys.Input.CaloCells)
38 kwargs["ClusterCorrectionTools"] = acc.popToolsAndMerge(tools)
39
40 acc.addEventAlgo(CompFactory.CaloClusterMaker(name, **kwargs))
41 return acc

Variable Documentation

◆ __author__

str egammaLargeClusterMakerAlgConfig.__author__ = "Jovan Mitrevski"
private

Definition at line 6 of file egammaLargeClusterMakerAlgConfig.py.