ATLAS Offline Software
Loading...
Searching...
No Matches
CaloClusterListBadChannel.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
4from CaloClusterCorrection.constants import \
5 CALOCORR_NOPOOL, CALOCORR_DEFAULT_KEY
6from CaloClusterCorrection.common import makecorr
7
8cls = CompFactory.CaloClusterBadChannelList # CaloClusterCorrection
9
10CaloClusterListBadChannel_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
make_CaloClusterListBadChannel(flags, corrclass, name=None, suffix=None, version=None, key=CALOCORR_DEFAULT_KEY, source=None, confclass=None, **kw)