![]() |
ATLAS Offline Software
|
Functions | |
| AddressRemappingCfg (renameMaps=[], overwriteMaps=[]) | |
| InputRenameCfg (type, from_name, to_name) | |
| InputOverwriteCfg (from_type, from_name, to_type, to_name) | |
Helpers for configuring the AddressRemappingSvc Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
| AddressRemappingConfig.AddressRemappingCfg | ( | renameMaps = [], | |
| overwriteMaps = [] ) |
Creates a ComponentAccumulator instance containing the AddressRemappingSvc and other needed services
Definition at line 10 of file AddressRemappingConfig.py.
| AddressRemappingConfig.InputOverwriteCfg | ( | from_type, | |
| from_name, | |||
| to_type, | |||
| to_name ) |
Add a new type overwrite mapping.
Definition at line 50 of file AddressRemappingConfig.py.
| AddressRemappingConfig.InputRenameCfg | ( | type, | |
| from_name, | |||
| to_name ) |
Add a new input renaming.
For example:
InputRenameCfg ("Foo", "foo", "bar")
to rename the object of type Foo named `foo' to `bar'.
May also be used to rename dynamic (but NOT static) auxiliary variables:
InputRenameCfg ("Foo", "foo.d1", "foo.x1")
If both are combined, write it like this:
InputRenameCfg ("Foo", "foo", "bar")
InputRenameCfg ("Foo", "foo.d1", "bar.x1")
Definition at line 28 of file AddressRemappingConfig.py.