ATLAS Offline Software
LCDMConfig.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
2 
3 from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
4 from AthenaConfiguration.ComponentFactory import CompFactory
5 
6 def GetLCDMCfg(flags):
7 
8  result = ComponentAccumulator()
9 
10  GetLCDM = CompFactory.GetLCDeadMaterialTree("GetLCDM")
11  GetLCDM.HadDMCoeffInitFile = "CaloHadDMCoeff_init_v2.txt"
12  GetLCDM.ClusterCollectionName = "CaloTopoClusters"
13  GetLCDM.ClusterCollectionNameCalib = "CaloCalTopoClusters"
14  GetLCDM.doSaveCalibClusInfo = False # to save additional info from collection with calibrated clusters
15  GetLCDM.OutputFileName = flags.LCW.outFileNameLCDM
16 
17  result.addEventAlgo(GetLCDM)
18 
19  return result
python.JetAnalysisCommon.ComponentAccumulator
ComponentAccumulator
Definition: JetAnalysisCommon.py:302
LCDMConfig.GetLCDMCfg
def GetLCDMCfg(flags)
Definition: LCDMConfig.py:6