Skip to content
Snippets Groups Projects
Forked from atlas / athena
15531 commits behind the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
GetLCDeadMaterialTree_jobOptions.py 813 B
# File: CaloLocalHadCalib/share/GetLCDeadMaterialTree_jobOptions.py
# Created: Febryary 2009, G. Pospelov
# Purpose: Generate special small DeadMaterialTree from ESD

from CaloLocalHadCalib.CaloLocalHadCalibConf import GetLCDeadMaterialTree
from AthenaCommon.SystemOfUnits import deg, GeV, MeV
from AthenaCommon.AlgSequence import AlgSequence

GetLCDM = GetLCDeadMaterialTree("GetLCDM")
GetLCDM.HadDMCoeffInitFile = "CaloHadDMCoeff_init_v2.txt"
GetLCDM.ClusterCollectionName = "CaloTopoClusters"
GetLCDM.ClusterCollectionNameCalib = "CaloCalTopoClusters"
GetLCDM.doSaveCalibClusInfo = False # to save additional info from collection with calibrated clusters
if 'outFileNameLCDM' in dir():
  GetLCDM.OutputFileName = outFileNameLCDM
else:
  GetLCDM.OutputFileName = "DeadMaterialTree.root"

topSequence += GetLCDM