CA component for MenuSequence sequence
Definition at line 945 of file MenuComponents.py.
◆ __init__()
def MenuComponents.SelectionCA.__init__ |
( |
|
self, |
|
|
|
name, |
|
|
|
isProbe = False |
|
) |
| |
Definition at line 947 of file MenuComponents.py.
947 def __init__(self, name, isProbe=False):
948 self.name = name+
"_probe" if isProbe
else name
950 super( SelectionCA, self ).
__init__()
952 self.stepViewSequence =
seqAND(self.name)
◆ addHypoAlgo()
def MenuComponents.SelectionCA.addHypoAlgo |
( |
|
self, |
|
|
|
algo |
|
) |
| |
To be used when the hypo alg configuration does not require auxiliary tools/services
Definition at line 975 of file MenuComponents.py.
975 def addHypoAlgo(self, algo):
976 """To be used when the hypo alg configuration does not require auxiliary tools/services"""
978 newname = algo.getName()+
'_probe'
980 self.hypoAcc.addEventAlgo(algo)
◆ hypo()
def MenuComponents.SelectionCA.hypo |
( |
|
self | ) |
|
Access hypo algo (or throws)
Definition at line 982 of file MenuComponents.py.
983 """Access hypo algo (or throws)"""
985 assert h
is not None,
"No hypo in SeelectionCA {}".
format(self.name)
◆ inputMaker()
def MenuComponents.SelectionCA.inputMaker |
( |
|
self | ) |
|
Access Input Maker (or throws)
Definition at line 988 of file MenuComponents.py.
988 def inputMaker(self):
989 """Access Input Maker (or throws)"""
991 assert im
is not None,
"No input maker in SeelectionCA {}".
format(self.name)
◆ mergeHypo()
def MenuComponents.SelectionCA.mergeHypo |
( |
|
self, |
|
|
|
other |
|
) |
| |
To be used when the hypo alg configuration comes with auxiliary tools/services
Definition at line 971 of file MenuComponents.py.
971 def mergeHypo(self, other):
972 """To be used when the hypo alg configuration comes with auxiliary tools/services"""
973 self.hypoAcc.
merge(other)
◆ mergeReco()
def MenuComponents.SelectionCA.mergeReco |
( |
|
self, |
|
|
|
recoCA, |
|
|
|
robPrefetchCA = None , |
|
|
|
upSequenceCA = None |
|
) |
| |
upSequenceCA is the user CA to run before the recoCA
Definition at line 959 of file MenuComponents.py.
959 def mergeReco(self, recoCA, robPrefetchCA=None, upSequenceCA=None):
960 ''' upSequenceCA is the user CA to run before the recoCA'''
962 ca.addSequence(self.stepViewSequence)
964 ca.merge(upSequenceCA, sequenceName=self.stepViewSequence.name)
965 ca.addEventAlgo(recoCA.inputMaker(), sequenceName=self.stepViewSequence.name)
967 ca.merge(robPrefetchCA, self.stepViewSequence.name)
968 ca.merge(recoCA, sequenceName=self.stepViewSequence.name)
◆ topSequence()
def MenuComponents.SelectionCA.topSequence |
( |
|
self | ) |
|
◆ wasMerged()
def MenuComponents.SelectionCA.wasMerged |
( |
|
self | ) |
|
Definition at line 955 of file MenuComponents.py.
956 super( SelectionCA, self ).wasMerged()
957 self.hypoAcc.wasMerged()
◆ hypoAcc
MenuComponents.SelectionCA.hypoAcc |
◆ isProbe
MenuComponents.SelectionCA.isProbe |
◆ name
MenuComponents.SelectionCA.name |
◆ stepViewSequence
MenuComponents.SelectionCA.stepViewSequence |
The documentation for this class was generated from the following file: