ATLAS Offline Software
Loading...
Searching...
No Matches
MuonCSC_CnvToolsConfig.py
Go to the documentation of this file.
1# Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
2
3from AthenaConfiguration.ComponentFactory import CompFactory
4
5
6def MuonCscRDODecoderCfg(flags, **kwargs):
7 from MuonConfig.MuonCalibrationConfig import CscCalibToolCfg
8 acc = CscCalibToolCfg(flags)
9 kwargs.setdefault("cscCalibTool", acc.popPrivateTools())
10
11 CscRDO_Decoder = CompFactory.Muon.CscRDO_Decoder
12 acc.setPrivateTools(CscRDO_Decoder(**kwargs))
13 return acc
MuonCscRDODecoderCfg(flags, **kwargs)