CA component for MenuSequence sequence
Definition at line 925 of file MenuComponents.py.
◆ __init__()
def MenuComponents.SelectionCA.__init__ |
( |
|
self, |
|
|
|
name, |
|
|
|
isProbe = False |
|
) |
| |
Definition at line 927 of file MenuComponents.py.
927 def __init__(self, name, isProbe=False):
928 self.name = name+
"_probe" if isProbe
else name
930 super( SelectionCA, self ).
__init__()
932 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 955 of file MenuComponents.py.
955 def addHypoAlgo(self, algo):
956 """To be used when the hypo alg configuration does not require auxiliary tools/services"""
958 newname = algo.getName()+
'_probe'
960 self.hypoAcc.addEventAlgo(algo)
◆ hypo()
def MenuComponents.SelectionCA.hypo |
( |
|
self | ) |
|
Access hypo algo (or throws)
Definition at line 962 of file MenuComponents.py.
963 """Access hypo algo (or throws)"""
965 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 968 of file MenuComponents.py.
968 def inputMaker(self):
969 """Access Input Maker (or throws)"""
971 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 951 of file MenuComponents.py.
951 def mergeHypo(self, other):
952 """To be used when the hypo alg configuration comes with auxiliary tools/services"""
953 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 939 of file MenuComponents.py.
939 def mergeReco(self, recoCA, robPrefetchCA=None, upSequenceCA=None):
940 ''' upSequenceCA is the user CA to run before the recoCA'''
942 ca.addSequence(self.stepViewSequence)
944 ca.merge(upSequenceCA, sequenceName=self.stepViewSequence.name)
945 ca.addEventAlgo(recoCA.inputMaker(), sequenceName=self.stepViewSequence.name)
947 ca.merge(robPrefetchCA, self.stepViewSequence.name)
948 ca.merge(recoCA, sequenceName=self.stepViewSequence.name)
◆ topSequence()
def MenuComponents.SelectionCA.topSequence |
( |
|
self | ) |
|
◆ wasMerged()
def MenuComponents.SelectionCA.wasMerged |
( |
|
self | ) |
|
Definition at line 935 of file MenuComponents.py.
936 super( SelectionCA, self ).wasMerged()
937 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: