ATLAS Offline Software
CaloClusterListBadChannel.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
2 
3 from AthenaConfiguration.ComponentFactory import CompFactory
4 from CaloClusterCorrection.constants import \
5  CALOCORR_NOPOOL, CALOCORR_DEFAULT_KEY
6 from CaloClusterCorrection.common import makecorr
7 
8 cls = CompFactory.CaloClusterBadChannelList # CaloClusterCorrection
9 
10 CaloClusterListBadChannel_versions = [
11  ['', cls,
12  ['CaloClusterListBadChannel.CaloClusterListBadChannel_parms',
13  CALOCORR_NOPOOL]],
14  ]
15 
17  corrclass,
18  name = None,
19  suffix = None,
20  version = None,
21  key = CALOCORR_DEFAULT_KEY,
22  source = None,
23  confclass = None,
24  **kw):
25 
26  return makecorr(flags,
27  versions= CaloClusterListBadChannel_versions,
28  name = name,
29  basename = 'listBadChannels',
30  suffix = suffix,
31  version = version,
32  key = key,
33  sampling = None,
34  source = source,
35  confclass = confclass,
36  corrclass = corrclass,
37  **kw)
38 
39 
41  pass
common.makecorr
def makecorr(flags, versions, name, basename, suffix, version, key, sampling, source, confclass, corrclass, generation='', order=0, **kw)
Definition: common.py:645
CaloClusterListBadChannel.make_CaloClusterListBadChannel
def make_CaloClusterListBadChannel(flags, corrclass, name=None, suffix=None, version=None, key=CALOCORR_DEFAULT_KEY, source=None, confclass=None, **kw)
Definition: CaloClusterListBadChannel.py:16
CaloClusterListBadChannel.CaloClusterListBadChannel_parms
Definition: CaloClusterListBadChannel.py:40