4 from AnalysisAlgorithmsConfig.ConfigBlock
import ConfigBlock
8 """the ConfigBlock for linking systematic variation and nominal objects"""
11 super (SystObjectLinkBlock, self).__init__ ()
12 self.addOption(
'containerName', containerName, type=str,
14 info=
"the name of the input container.")
18 alg = config.createAlgorithm(
'CP::SystObjectLinkerAlg', f
'SystObjLinker_{self.containerName}', reentrant=
True)
19 alg.input = config.readName (self.containerName)
25 """Create an alg for linking systematic variations with their nominal object
28 containerName: the container to be decorated with the links
31 config = SystObjectLinkBlock (containerName)